diff --git a/internal/acctest/acctest.go b/internal/acctest/acctest.go index 88b4c06e3..448f0940c 100644 --- a/internal/acctest/acctest.go +++ b/internal/acctest/acctest.go @@ -34,6 +34,7 @@ type TestTools struct { var foldersUsingVCRv4 = []string{ "account", "container", + "iam", "instance", "k8s", "marketplace", diff --git a/internal/services/iam/api_key_test.go b/internal/services/iam/api_key_test.go index 58c11c0cb..13fc19b50 100644 --- a/internal/services/iam/api_key_test.go +++ b/internal/services/iam/api_key_test.go @@ -4,6 +4,7 @@ import ( "context" "fmt" "testing" + "time" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/retry" "github.com/hashicorp/terraform-plugin-testing/helper/resource" @@ -141,6 +142,8 @@ func TestAccApiKey_Expires(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() + expiresAt := time.Now().UTC().Add(time.Minute * 10).Format(time.RFC3339) + resource.ParallelTest(t, resource.TestCase{ ProtoV6ProviderFactories: tt.ProviderFactories, CheckDestroy: resource.ComposeTestCheckFunc( @@ -149,7 +152,7 @@ func TestAccApiKey_Expires(t *testing.T) { ), Steps: []resource.TestStep{ { - Config: ` + Config: fmt.Sprintf(` resource "scaleway_iam_application" "main" { name = "tf_tests_app_expires_at" } @@ -157,30 +160,16 @@ func TestAccApiKey_Expires(t *testing.T) { resource "scaleway_iam_api_key" "main" { application_id = scaleway_iam_application.main.id description = "tf_tests_expires" - expires_at = "2025-07-06T11:00:00+02:00" + expires_at = "%s" } - `, + `, expiresAt), Check: resource.ComposeTestCheckFunc( testAccCheckIamAPIKeyExists(tt, "scaleway_iam_api_key.main"), resource.TestCheckResourceAttrPair("scaleway_iam_api_key.main", "application_id", "scaleway_iam_application.main", "id"), resource.TestCheckResourceAttr("scaleway_iam_api_key.main", "description", "tf_tests_expires"), - resource.TestCheckResourceAttr("scaleway_iam_api_key.main", "expires_at", "2025-07-06T09:00:00Z"), + resource.TestCheckResourceAttr("scaleway_iam_api_key.main", "expires_at", expiresAt), ), }, - { - Config: ` - resource "scaleway_iam_application" "main" { - name = "tf_tests_app_expires_at" - } - - resource "scaleway_iam_api_key" "main" { - application_id = scaleway_iam_application.main.id - description = "tf_tests_expires" - expires_at = "2025-07-06T09:00:00Z" - } - `, - PlanOnly: true, - }, }, }) } diff --git a/internal/services/iam/group_membership_test.go b/internal/services/iam/group_membership_test.go index 4f04b6d3a..333362bbd 100644 --- a/internal/services/iam/group_membership_test.go +++ b/internal/services/iam/group_membership_test.go @@ -119,7 +119,7 @@ func TestAccGroupMembership_User(t *testing.T) { } data "scaleway_iam_user" "main" { - user_id = "b6360d4f-831c-45a8-889e-0b65ed079e63" + user_id = "ef29ce05-3f2b-4fa0-a259-d76110850d57" } resource scaleway_iam_group_membership main { diff --git a/internal/services/iam/group_test.go b/internal/services/iam/group_test.go index 7228140c3..91d7c2f67 100644 --- a/internal/services/iam/group_test.go +++ b/internal/services/iam/group_test.go @@ -260,7 +260,7 @@ func TestAccGroup_Users(t *testing.T) { { Config: ` data "scaleway_iam_user" "user02" { - user_id = "b6360d4f-831c-45a8-889e-0b65ed079e63" + user_id = "ef29ce05-3f2b-4fa0-a259-d76110850d57" } resource "scaleway_iam_group" "main_user" { @@ -374,7 +374,7 @@ func TestAccGroup_UsersAndApplications(t *testing.T) { user_id = "ef29ce05-3f2b-4fa0-a259-d76110850d57" } data "scaleway_iam_user" "user01" { - user_id = "b6360d4f-831c-45a8-889e-0b65ed079e63" + user_id = "84d20ae1-9650-419a-ab74-7ab09b6262e0" } resource "scaleway_iam_group" "main_mix" { @@ -411,7 +411,7 @@ func TestAccGroup_UsersAndApplications(t *testing.T) { user_id = "ef29ce05-3f2b-4fa0-a259-d76110850d57" } data "scaleway_iam_user" "user03" { - user_id = "b6360d4f-831c-45a8-889e-0b65ed079e63" + user_id = "88b4dde1-f3d4-478a-a281-784d53399a30" } data "scaleway_iam_user" "user04" { user_id = "84d20ae1-9650-419a-ab74-7ab09b6262e0" diff --git a/internal/services/iam/testdata/api-key-expires.cassette.yaml b/internal/services/iam/testdata/api-key-expires.cassette.yaml index 30741b0b8..92baa5e89 100644 --- a/internal/services/iam/testdata/api-key-expires.cassette.yaml +++ b/internal/services/iam/testdata/api-key-expires.cassette.yaml @@ -1,738 +1,357 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 118 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_app_expires_at","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:06.852924Z","deletable":true,"description":"","editable":true,"id":"be105c68-9ddc-4b73-89cb-e0010ac00e02","managed":false,"name":"tf_tests_app_expires_at","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:06.852924Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:06 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: - - 54eef554-5339-42d6-b635-ea0f877097fd - status: 200 OK - code: 200 - duration: 224.413209ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/be105c68-9ddc-4b73-89cb-e0010ac00e02 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:06.852924Z","deletable":true,"description":"","editable":true,"id":"be105c68-9ddc-4b73-89cb-e0010ac00e02","managed":false,"name":"tf_tests_app_expires_at","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:06.852924Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:06 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: - - adb91d8f-eb9a-4c66-b980-a22b4d801a0b - status: 200 OK - code: 200 - duration: 97.802375ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 131 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"be105c68-9ddc-4b73-89cb-e0010ac00e02","expires_at":"2025-07-06T11:00:00+02:00","description":"tf_tests_expires"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 448 - uncompressed: false - body: '{"access_key":"SCWT9GT83JZCT6C8X863","application_id":"be105c68-9ddc-4b73-89cb-e0010ac00e02","created_at":"2025-01-22T15:33:07.212281Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_expires","editable":true,"expires_at":"2025-07-06T09:00:00Z","managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:07.212281Z"}' - headers: - Content-Length: - - "448" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 1e5921e6-08d2-41eb-b41b-6d819f917cde - status: 200 OK - code: 200 - duration: 239.814416ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT9GT83JZCT6C8X863 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 414 - uncompressed: false - body: '{"access_key":"SCWT9GT83JZCT6C8X863","application_id":"be105c68-9ddc-4b73-89cb-e0010ac00e02","created_at":"2025-01-22T15:33:07.212281Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_expires","editable":true,"expires_at":"2025-07-06T09:00:00Z","managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:07.212281Z"}' - headers: - Content-Length: - - "414" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 30cf1ce8-7b27-41e9-b7a5-a0831dc42dcc - status: 200 OK - code: 200 - duration: 104.284375ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT9GT83JZCT6C8X863 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 414 - uncompressed: false - body: '{"access_key":"SCWT9GT83JZCT6C8X863","application_id":"be105c68-9ddc-4b73-89cb-e0010ac00e02","created_at":"2025-01-22T15:33:07.212281Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_expires","editable":true,"expires_at":"2025-07-06T09:00:00Z","managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:07.212281Z"}' - headers: - Content-Length: - - "414" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - cbd89a58-3eab-45a0-9ba1-8ef63fb457bc - status: 200 OK - code: 200 - duration: 400.722334ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/be105c68-9ddc-4b73-89cb-e0010ac00e02 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:06.852924Z","deletable":true,"description":"","editable":true,"id":"be105c68-9ddc-4b73-89cb-e0010ac00e02","managed":false,"name":"tf_tests_app_expires_at","nb_api_keys":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:06.852924Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 96fda6ed-7d9d-4822-98ec-34171f85765f - status: 200 OK - code: 200 - duration: 87.477541ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT9GT83JZCT6C8X863 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 414 - uncompressed: false - body: '{"access_key":"SCWT9GT83JZCT6C8X863","application_id":"be105c68-9ddc-4b73-89cb-e0010ac00e02","created_at":"2025-01-22T15:33:07.212281Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_expires","editable":true,"expires_at":"2025-07-06T09:00:00Z","managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:07.212281Z"}' - headers: - Content-Length: - - "414" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - da110cc3-6d51-4bdf-9948-22459a9e1742 - status: 200 OK - code: 200 - duration: 126.587708ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/be105c68-9ddc-4b73-89cb-e0010ac00e02 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:06.852924Z","deletable":true,"description":"","editable":true,"id":"be105c68-9ddc-4b73-89cb-e0010ac00e02","managed":false,"name":"tf_tests_app_expires_at","nb_api_keys":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:06.852924Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 34a230c0-4ea9-4cea-900b-fdc4deac2cab - status: 200 OK - code: 200 - duration: 111.672334ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT9GT83JZCT6C8X863 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 414 - uncompressed: false - body: '{"access_key":"SCWT9GT83JZCT6C8X863","application_id":"be105c68-9ddc-4b73-89cb-e0010ac00e02","created_at":"2025-01-22T15:33:07.212281Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_expires","editable":true,"expires_at":"2025-07-06T09:00:00Z","managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:07.212281Z"}' - headers: - Content-Length: - - "414" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - cf320c6b-246b-45af-8ed6-503ded1c995c - status: 200 OK - code: 200 - duration: 108.297166ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/be105c68-9ddc-4b73-89cb-e0010ac00e02 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:06.852924Z","deletable":true,"description":"","editable":true,"id":"be105c68-9ddc-4b73-89cb-e0010ac00e02","managed":false,"name":"tf_tests_app_expires_at","nb_api_keys":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:06.852924Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - d5593f9b-213d-4ee7-9f0f-08c0be6f1c38 - status: 200 OK - code: 200 - duration: 572.828583ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT9GT83JZCT6C8X863 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 414 - uncompressed: false - body: '{"access_key":"SCWT9GT83JZCT6C8X863","application_id":"be105c68-9ddc-4b73-89cb-e0010ac00e02","created_at":"2025-01-22T15:33:07.212281Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_expires","editable":true,"expires_at":"2025-07-06T09:00:00Z","managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:07.212281Z"}' - headers: - Content-Length: - - "414" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 2a6e160d-d403-493f-830f-bffba53bcc19 - status: 200 OK - code: 200 - duration: 106.334958ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT9GT83JZCT6C8X863 - 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: - - Wed, 22 Jan 2025 15:33: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: - - 87f4a600-60dd-4142-8cb8-06ad5b36ed12 - status: 204 No Content - code: 204 - duration: 93.685625ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/be105c68-9ddc-4b73-89cb-e0010ac00e02 - 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: - - Wed, 22 Jan 2025 15:33: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: - - 8058af94-2d35-4465-9ba4-2917b33035f6 - status: 204 No Content - code: 204 - duration: 85.827417ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT9GT83JZCT6C8X863 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 115 - uncompressed: false - body: '{"message":"resource is not found","resource":"access_key","resource_id":"SCWT9GT83JZCT6C8X863","type":"not_found"}' - headers: - Content-Length: - - "115" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 6825eabd-22ff-4e71-be66-24d06233d169 - status: 404 Not Found - code: 404 - duration: 22.061458ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/be105c68-9ddc-4b73-89cb-e0010ac00e02 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 132 - uncompressed: false - body: '{"message":"resource is not found","resource":"application","resource_id":"be105c68-9ddc-4b73-89cb-e0010ac00e02","type":"not_found"}' - headers: - Content-Length: - - "132" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 33c5325f-52d0-4750-887f-027b3b95ba45 - status: 404 Not Found - code: 404 - duration: 23.734333ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_app_expires_at\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"3ae3653e-b351-4ae0-9588-cff12f56a22d\", \"name\":\"tf_tests_app_expires_at\", \"description\":\"\", \"created_at\":\"2025-11-18T07:32:50.128412Z\", \"updated_at\":\"2025-11-18T07:32:50.128412Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Tue, 18 Nov 2025 07:32:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 2e2b2db5-f5a0-4af0-b7e7-d90c1fc23163 + status: 200 OK + code: 200 + duration: 1.010772295s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/3ae3653e-b351-4ae0-9588-cff12f56a22d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"3ae3653e-b351-4ae0-9588-cff12f56a22d\", \"name\":\"tf_tests_app_expires_at\", \"description\":\"\", \"created_at\":\"2025-11-18T07:32:50.128412Z\", \"updated_at\":\"2025-11-18T07:32:50.128412Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Tue, 18 Nov 2025 07:32:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - c7b0273a-1da5-4fcd-93e6-a555f260e93b + status: 200 OK + code: 200 + duration: 329.04766ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 126 + host: api.scaleway.com + body: "{\"application_id\":\"3ae3653e-b351-4ae0-9588-cff12f56a22d\",\"expires_at\":\"2025-11-18T07:42:48Z\",\"description\":\"tf_tests_expires\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 448 + body: "{\"access_key\":\"SCWCW8QCSYW3G2CABQQV\", \"secret_key\":\"11111111-1111-1111-1111-111111111111\", \"description\":\"tf_tests_expires\", \"created_at\":\"2025-11-18T07:32:50.768496Z\", \"updated_at\":\"2025-11-18T07:32:50.768496Z\", \"expires_at\":\"2025-11-18T07:42:48Z\", \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.73.9\", \"application_id\":\"3ae3653e-b351-4ae0-9588-cff12f56a22d\"}" + headers: + Content-Length: + - "448" + Content-Type: + - application/json + Date: + - Tue, 18 Nov 2025 07:32:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 72b9ea51-e6e6-4f4a-a0ca-393615a49ebe + status: 200 OK + code: 200 + duration: 497.653665ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 414 + body: "{\"access_key\":\"SCWCW8QCSYW3G2CABQQV\", \"secret_key\":null, \"description\":\"tf_tests_expires\", \"created_at\":\"2025-11-18T07:32:50.768496Z\", \"updated_at\":\"2025-11-18T07:32:50.768496Z\", \"expires_at\":\"2025-11-18T07:42:48Z\", \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.73.9\", \"application_id\":\"3ae3653e-b351-4ae0-9588-cff12f56a22d\"}" + headers: + Content-Length: + - "414" + Content-Type: + - application/json + Date: + - Tue, 18 Nov 2025 07:32:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 166ed1f8-58ee-4d9f-8cfd-5de3296ea001 + status: 200 OK + code: 200 + duration: 246.516979ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 414 + body: "{\"access_key\":\"SCWCW8QCSYW3G2CABQQV\", \"secret_key\":null, \"description\":\"tf_tests_expires\", \"created_at\":\"2025-11-18T07:32:50.768496Z\", \"updated_at\":\"2025-11-18T07:32:50.768496Z\", \"expires_at\":\"2025-11-18T07:42:48Z\", \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.73.9\", \"application_id\":\"3ae3653e-b351-4ae0-9588-cff12f56a22d\"}" + headers: + Content-Length: + - "414" + Content-Type: + - application/json + Date: + - Tue, 18 Nov 2025 07:32:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 7ea0fc08-d600-40ce-9fc7-69a89cbea4c8 + status: 200 OK + code: 200 + duration: 218.216905ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/3ae3653e-b351-4ae0-9588-cff12f56a22d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"3ae3653e-b351-4ae0-9588-cff12f56a22d\", \"name\":\"tf_tests_app_expires_at\", \"description\":\"\", \"created_at\":\"2025-11-18T07:32:50.128412Z\", \"updated_at\":\"2025-11-18T07:32:50.128412Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":1, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Tue, 18 Nov 2025 07:32:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - e34bc07e-9f43-4a04-97c5-0e3c5db5c3f9 + status: 200 OK + code: 200 + duration: 446.295143ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 414 + body: "{\"access_key\":\"SCWCW8QCSYW3G2CABQQV\", \"secret_key\":null, \"description\":\"tf_tests_expires\", \"created_at\":\"2025-11-18T07:32:50.768496Z\", \"updated_at\":\"2025-11-18T07:32:50.768496Z\", \"expires_at\":\"2025-11-18T07:42:48Z\", \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.73.9\", \"application_id\":\"3ae3653e-b351-4ae0-9588-cff12f56a22d\"}" + headers: + Content-Length: + - "414" + Content-Type: + - application/json + Date: + - Tue, 18 Nov 2025 07:32:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - c9b03ee2-8f42-4d3b-9081-ef865d95b84a + status: 200 OK + code: 200 + duration: 868.126489ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Tue, 18 Nov 2025 07:32:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 41ea92ea-feb3-4f64-bc56-d274cbdd30c9 + status: 204 No Content + code: 204 + duration: 307.230325ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/3ae3653e-b351-4ae0-9588-cff12f56a22d + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Tue, 18 Nov 2025 07:32:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 7c9c962a-6dfa-452e-90c0-004b01b98ff7 + status: 204 No Content + code: 204 + duration: 297.452134ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 115 + body: "{\"message\":\"resource is not found\",\"resource\":\"access_key\",\"resource_id\":\"SCWCW8QCSYW3G2CABQQV\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "115" + Content-Type: + - application/json + Date: + - Tue, 18 Nov 2025 07:32:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - dda5e3b5-d55c-44c5-b1e0-77d719c4ca90 + status: 404 Not Found + code: 404 + duration: 195.326522ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/3ae3653e-b351-4ae0-9588-cff12f56a22d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 132 + body: "{\"message\":\"resource is not found\",\"resource\":\"application\",\"resource_id\":\"3ae3653e-b351-4ae0-9588-cff12f56a22d\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "132" + Content-Type: + - application/json + Date: + - Tue, 18 Nov 2025 07:32:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - d348a677-72c8-4999-8e75-c1a23a224850 + status: 404 Not Found + code: 404 + duration: 198.571601ms diff --git a/internal/services/iam/testdata/api-key-no-update.cassette.yaml b/internal/services/iam/testdata/api-key-no-update.cassette.yaml index 5fe84ca01..e455cb348 100644 --- a/internal/services/iam/testdata/api-key-no-update.cassette.yaml +++ b/internal/services/iam/testdata/api-key-no-update.cassette.yaml @@ -1,738 +1,485 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 120 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_app_key_noupdate","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 325 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:10.966135Z","deletable":true,"description":"","editable":true,"id":"4fc3fc06-e47a-4983-a8f7-2de34dd833f9","managed":false,"name":"tf_tests_app_key_noupdate","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:10.966135Z"}' - headers: - Content-Length: - - "325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 89a56206-2fdd-4143-8c45-cbd8414b197a - status: 200 OK - code: 200 - duration: 127.216791ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/4fc3fc06-e47a-4983-a8f7-2de34dd833f9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 325 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:10.966135Z","deletable":true,"description":"","editable":true,"id":"4fc3fc06-e47a-4983-a8f7-2de34dd833f9","managed":false,"name":"tf_tests_app_key_noupdate","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:10.966135Z"}' - headers: - Content-Length: - - "325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - f1e022f9-d731-417c-b853-4b91dd77218e - status: 200 OK - code: 200 - duration: 82.262583ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 92 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"4fc3fc06-e47a-4983-a8f7-2de34dd833f9","description":"tf_tests_no_update"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 432 - uncompressed: false - body: '{"access_key":"SCWGFG13WMDT0WR717HW","application_id":"4fc3fc06-e47a-4983-a8f7-2de34dd833f9","created_at":"2025-01-22T15:33:11.871975Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_no_update","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:11.871975Z"}' - headers: - Content-Length: - - "432" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 397dd6ac-36a2-4510-8209-6cbade12a30e - status: 200 OK - code: 200 - duration: 803.185125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWGFG13WMDT0WR717HW - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 398 - uncompressed: false - body: '{"access_key":"SCWGFG13WMDT0WR717HW","application_id":"4fc3fc06-e47a-4983-a8f7-2de34dd833f9","created_at":"2025-01-22T15:33:11.871975Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_no_update","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:11.871975Z"}' - headers: - Content-Length: - - "398" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - a3db87ad-4fca-46a2-9719-d2e10dbae708 - status: 200 OK - code: 200 - duration: 85.754583ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWGFG13WMDT0WR717HW - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 398 - uncompressed: false - body: '{"access_key":"SCWGFG13WMDT0WR717HW","application_id":"4fc3fc06-e47a-4983-a8f7-2de34dd833f9","created_at":"2025-01-22T15:33:11.871975Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_no_update","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:11.871975Z"}' - headers: - Content-Length: - - "398" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 4bc578e7-6cfe-4380-9f7b-1846434b8af1 - status: 200 OK - code: 200 - duration: 92.316916ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/4fc3fc06-e47a-4983-a8f7-2de34dd833f9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 325 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:10.966135Z","deletable":true,"description":"","editable":true,"id":"4fc3fc06-e47a-4983-a8f7-2de34dd833f9","managed":false,"name":"tf_tests_app_key_noupdate","nb_api_keys":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:10.966135Z"}' - headers: - Content-Length: - - "325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 82d9f640-518c-4f92-a686-f58c32448ff4 - status: 200 OK - code: 200 - duration: 120.389583ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWGFG13WMDT0WR717HW - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 398 - uncompressed: false - body: '{"access_key":"SCWGFG13WMDT0WR717HW","application_id":"4fc3fc06-e47a-4983-a8f7-2de34dd833f9","created_at":"2025-01-22T15:33:11.871975Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_no_update","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:11.871975Z"}' - headers: - Content-Length: - - "398" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - f16433a9-7475-4e16-9e7b-1c52036934f9 - status: 200 OK - code: 200 - duration: 92.476375ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/4fc3fc06-e47a-4983-a8f7-2de34dd833f9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 325 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:10.966135Z","deletable":true,"description":"","editable":true,"id":"4fc3fc06-e47a-4983-a8f7-2de34dd833f9","managed":false,"name":"tf_tests_app_key_noupdate","nb_api_keys":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:10.966135Z"}' - headers: - Content-Length: - - "325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - ae44cbe7-921d-4cd7-adc4-24491eae560a - status: 200 OK - code: 200 - duration: 87.355042ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWGFG13WMDT0WR717HW - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 398 - uncompressed: false - body: '{"access_key":"SCWGFG13WMDT0WR717HW","application_id":"4fc3fc06-e47a-4983-a8f7-2de34dd833f9","created_at":"2025-01-22T15:33:11.871975Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_no_update","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:11.871975Z"}' - headers: - Content-Length: - - "398" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - f10aa134-b758-4fda-9c17-7bb105b92a1c - status: 200 OK - code: 200 - duration: 100.295666ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWGFG13WMDT0WR717HW - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 398 - uncompressed: false - body: '{"access_key":"SCWGFG13WMDT0WR717HW","application_id":"4fc3fc06-e47a-4983-a8f7-2de34dd833f9","created_at":"2025-01-22T15:33:11.871975Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_no_update","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:11.871975Z"}' - headers: - Content-Length: - - "398" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 66fd459e-098c-4255-9808-2a6d8780ced9 - status: 200 OK - code: 200 - duration: 97.483834ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/4fc3fc06-e47a-4983-a8f7-2de34dd833f9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 325 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:10.966135Z","deletable":true,"description":"","editable":true,"id":"4fc3fc06-e47a-4983-a8f7-2de34dd833f9","managed":false,"name":"tf_tests_app_key_noupdate","nb_api_keys":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:10.966135Z"}' - headers: - Content-Length: - - "325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 6844f0b4-65d0-4c75-bc0c-5ba4dd481f58 - status: 200 OK - code: 200 - duration: 82.047792ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWGFG13WMDT0WR717HW - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 398 - uncompressed: false - body: '{"access_key":"SCWGFG13WMDT0WR717HW","application_id":"4fc3fc06-e47a-4983-a8f7-2de34dd833f9","created_at":"2025-01-22T15:33:11.871975Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_no_update","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:11.871975Z"}' - headers: - Content-Length: - - "398" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 4c01d6a1-d0e4-4a47-90f5-cfbceee3fee3 - status: 200 OK - code: 200 - duration: 96.97975ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWGFG13WMDT0WR717HW - 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: - - Wed, 22 Jan 2025 15:33: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: - - bb3c7c65-9865-4e15-ad26-33b67977c479 - status: 204 No Content - code: 204 - duration: 114.996958ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/4fc3fc06-e47a-4983-a8f7-2de34dd833f9 - 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: - - Wed, 22 Jan 2025 15:33: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: - - e2dc3d53-c393-4b77-b6d9-b2e741eba4e9 - status: 204 No Content - code: 204 - duration: 162.315958ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWGFG13WMDT0WR717HW - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 115 - uncompressed: false - body: '{"message":"resource is not found","resource":"access_key","resource_id":"SCWGFG13WMDT0WR717HW","type":"not_found"}' - headers: - Content-Length: - - "115" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 73f90752-daf8-4090-b5f4-8b1d7786dd30 - status: 404 Not Found - code: 404 - duration: 28.265917ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 120 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_app_key_noupdate\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 325 + body: "{\"id\":\"f3c1eb4e-754b-4bf1-b620-5c05219bba77\", \"name\":\"tf_tests_app_key_noupdate\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.476097Z\", \"updated_at\":\"2025-11-17T17:10:30.476097Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "325" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 666bc415-c4a6-446c-b084-84a1e0e77e57 + status: 200 OK + code: 200 + duration: 199.998475ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/f3c1eb4e-754b-4bf1-b620-5c05219bba77 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 325 + body: "{\"id\":\"f3c1eb4e-754b-4bf1-b620-5c05219bba77\", \"name\":\"tf_tests_app_key_noupdate\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.476097Z\", \"updated_at\":\"2025-11-17T17:10:30.476097Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "325" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 32fd1738-3b05-4cba-8c1a-8bb2a85c23d2 + status: 200 OK + code: 200 + duration: 206.930539ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 92 + host: api.scaleway.com + body: "{\"application_id\":\"f3c1eb4e-754b-4bf1-b620-5c05219bba77\",\"description\":\"tf_tests_no_update\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 434 + body: "{\"access_key\":\"SCWGHDDYJKT62CPNNKCT\", \"secret_key\":\"11111111-1111-1111-1111-111111111111\", \"description\":\"tf_tests_no_update\", \"created_at\":\"2025-11-17T17:10:30.935346Z\", \"updated_at\":\"2025-11-17T17:10:30.935346Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"f3c1eb4e-754b-4bf1-b620-5c05219bba77\"}" + headers: + Content-Length: + - "434" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8e8eaef9-277d-4216-aabd-43359f4792df + status: 200 OK + code: 200 + duration: 265.752441ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 400 + body: "{\"access_key\":\"SCWGHDDYJKT62CPNNKCT\", \"secret_key\":null, \"description\":\"tf_tests_no_update\", \"created_at\":\"2025-11-17T17:10:30.935346Z\", \"updated_at\":\"2025-11-17T17:10:30.935346Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"f3c1eb4e-754b-4bf1-b620-5c05219bba77\"}" + headers: + Content-Length: + - "400" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a7693886-a2cb-45cd-9d2c-823d020233d9 + status: 200 OK + code: 200 + duration: 186.527615ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 400 + body: "{\"access_key\":\"SCWGHDDYJKT62CPNNKCT\", \"secret_key\":null, \"description\":\"tf_tests_no_update\", \"created_at\":\"2025-11-17T17:10:30.935346Z\", \"updated_at\":\"2025-11-17T17:10:30.935346Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"f3c1eb4e-754b-4bf1-b620-5c05219bba77\"}" + headers: + Content-Length: + - "400" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - cef36e8b-9679-4c2b-8bd2-3b61d533c474 + status: 200 OK + code: 200 + duration: 176.567178ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/f3c1eb4e-754b-4bf1-b620-5c05219bba77 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 325 + body: "{\"id\":\"f3c1eb4e-754b-4bf1-b620-5c05219bba77\", \"name\":\"tf_tests_app_key_noupdate\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.476097Z\", \"updated_at\":\"2025-11-17T17:10:30.476097Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":1, \"tags\":[]}" + headers: + Content-Length: + - "325" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 063e09f8-648f-47e1-8f5a-ae426041eb15 + status: 200 OK + code: 200 + duration: 96.917992ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 400 + body: "{\"access_key\":\"SCWGHDDYJKT62CPNNKCT\", \"secret_key\":null, \"description\":\"tf_tests_no_update\", \"created_at\":\"2025-11-17T17:10:30.935346Z\", \"updated_at\":\"2025-11-17T17:10:30.935346Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"f3c1eb4e-754b-4bf1-b620-5c05219bba77\"}" + headers: + Content-Length: + - "400" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 17a456f0-be79-423f-81af-27905e4c26b5 + status: 200 OK + code: 200 + duration: 169.493237ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/f3c1eb4e-754b-4bf1-b620-5c05219bba77 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 325 + body: "{\"id\":\"f3c1eb4e-754b-4bf1-b620-5c05219bba77\", \"name\":\"tf_tests_app_key_noupdate\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.476097Z\", \"updated_at\":\"2025-11-17T17:10:30.476097Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":1, \"tags\":[]}" + headers: + Content-Length: + - "325" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d022c7f0-a05e-495e-a772-55a814256848 + status: 200 OK + code: 200 + duration: 62.733096ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 400 + body: "{\"access_key\":\"SCWGHDDYJKT62CPNNKCT\", \"secret_key\":null, \"description\":\"tf_tests_no_update\", \"created_at\":\"2025-11-17T17:10:30.935346Z\", \"updated_at\":\"2025-11-17T17:10:30.935346Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"f3c1eb4e-754b-4bf1-b620-5c05219bba77\"}" + headers: + Content-Length: + - "400" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 713c26ff-b895-4df6-a8a7-a429b3d3ba0f + status: 200 OK + code: 200 + duration: 47.415033ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 400 + body: "{\"access_key\":\"SCWGHDDYJKT62CPNNKCT\", \"secret_key\":null, \"description\":\"tf_tests_no_update\", \"created_at\":\"2025-11-17T17:10:30.935346Z\", \"updated_at\":\"2025-11-17T17:10:30.935346Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"f3c1eb4e-754b-4bf1-b620-5c05219bba77\"}" + headers: + Content-Length: + - "400" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ac665000-4320-4097-b982-70e34d31a9f8 + status: 200 OK + code: 200 + duration: 85.685196ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/f3c1eb4e-754b-4bf1-b620-5c05219bba77 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 325 + body: "{\"id\":\"f3c1eb4e-754b-4bf1-b620-5c05219bba77\", \"name\":\"tf_tests_app_key_noupdate\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.476097Z\", \"updated_at\":\"2025-11-17T17:10:30.476097Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":1, \"tags\":[]}" + headers: + Content-Length: + - "325" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6d7f7cf0-2789-456e-a5a3-5709b8e35a45 + status: 200 OK + code: 200 + duration: 49.925099ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 400 + body: "{\"access_key\":\"SCWGHDDYJKT62CPNNKCT\", \"secret_key\":null, \"description\":\"tf_tests_no_update\", \"created_at\":\"2025-11-17T17:10:30.935346Z\", \"updated_at\":\"2025-11-17T17:10:30.935346Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"f3c1eb4e-754b-4bf1-b620-5c05219bba77\"}" + headers: + Content-Length: + - "400" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f6a6d66b-d9c6-42b2-96a9-53bf80ba4f8f + status: 200 OK + code: 200 + duration: 183.221247ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 4906894c-cfcd-44b6-b94d-5876dbef37ed + status: 204 No Content + code: 204 + duration: 166.924235ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/f3c1eb4e-754b-4bf1-b620-5c05219bba77 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a7c4d0ef-d471-4e0e-b317-40bba63a7ba6 + status: 204 No Content + code: 204 + duration: 161.444799ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 115 + body: "{\"message\":\"resource is not found\",\"resource\":\"access_key\",\"resource_id\":\"SCWGHDDYJKT62CPNNKCT\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "115" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b3ccf5a0-2dbd-44b9-9c0a-a78a5902d4ff + status: 404 Not Found + code: 404 + duration: 63.799218ms diff --git a/internal/services/iam/testdata/api-key-with-application-change.cassette.yaml b/internal/services/iam/testdata/api-key-with-application-change.cassette.yaml index 20726bf5a..dab7c600d 100644 --- a/internal/services/iam/testdata/api-key-with-application-change.cassette.yaml +++ b/internal/services/iam/testdata/api-key-with-application-change.cassette.yaml @@ -1,1326 +1,871 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 122 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_api_key_app_change","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 327 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:11.015406Z","deletable":true,"description":"","editable":true,"id":"4c9b9741-d82a-43b7-b279-d3e62c206cb9","managed":false,"name":"tf_tests_api_key_app_change","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:11.015406Z"}' - headers: - Content-Length: - - "327" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 98aa9c6a-f57d-419c-a00f-d6468aa57b63 - status: 200 OK - code: 200 - duration: 120.862917ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 123 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_api_key_app_change2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 328 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:11.018766Z","deletable":true,"description":"","editable":true,"id":"5a5477be-322a-46a9-8b6e-44b6eb725c24","managed":false,"name":"tf_tests_api_key_app_change2","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:11.018766Z"}' - headers: - Content-Length: - - "328" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 91036327-fd44-4beb-899f-6aff0cd9cf42 - status: 200 OK - code: 200 - duration: 126.055542ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/5a5477be-322a-46a9-8b6e-44b6eb725c24 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 328 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:11.018766Z","deletable":true,"description":"","editable":true,"id":"5a5477be-322a-46a9-8b6e-44b6eb725c24","managed":false,"name":"tf_tests_api_key_app_change2","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:11.018766Z"}' - headers: - Content-Length: - - "328" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - fd30eeb0-65b8-4c69-a71b-18e839a7c71b - status: 200 OK - code: 200 - duration: 626.120792ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/4c9b9741-d82a-43b7-b279-d3e62c206cb9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 327 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:11.015406Z","deletable":true,"description":"","editable":true,"id":"4c9b9741-d82a-43b7-b279-d3e62c206cb9","managed":false,"name":"tf_tests_api_key_app_change","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:11.015406Z"}' - headers: - Content-Length: - - "327" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 57250062-4e0c-424a-a2e7-2ecb2c1d5fc4 - status: 200 OK - code: 200 - duration: 631.236958ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 106 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"4c9b9741-d82a-43b7-b279-d3e62c206cb9","description":"tf_tests_with_application_change"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 446 - uncompressed: false - body: '{"access_key":"SCWCG1EGRQF47RZERS79","application_id":"4c9b9741-d82a-43b7-b279-d3e62c206cb9","created_at":"2025-01-22T15:33:11.867565Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application_change","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:11.867565Z"}' - headers: - Content-Length: - - "446" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - fdc9d2ce-1867-4a83-b3af-285a31872ce8 - status: 200 OK - code: 200 - duration: 205.482875ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWCG1EGRQF47RZERS79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 412 - uncompressed: false - body: '{"access_key":"SCWCG1EGRQF47RZERS79","application_id":"4c9b9741-d82a-43b7-b279-d3e62c206cb9","created_at":"2025-01-22T15:33:11.867565Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application_change","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:11.867565Z"}' - headers: - Content-Length: - - "412" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - e429b7a0-6540-4f87-8751-8120663e36a1 - status: 200 OK - code: 200 - duration: 97.002167ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWCG1EGRQF47RZERS79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 412 - uncompressed: false - body: '{"access_key":"SCWCG1EGRQF47RZERS79","application_id":"4c9b9741-d82a-43b7-b279-d3e62c206cb9","created_at":"2025-01-22T15:33:11.867565Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application_change","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:11.867565Z"}' - headers: - Content-Length: - - "412" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 09833564-8135-4795-93c5-5c3d56328e43 - status: 200 OK - code: 200 - duration: 90.953375ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/5a5477be-322a-46a9-8b6e-44b6eb725c24 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 328 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:11.018766Z","deletable":true,"description":"","editable":true,"id":"5a5477be-322a-46a9-8b6e-44b6eb725c24","managed":false,"name":"tf_tests_api_key_app_change2","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:11.018766Z"}' - headers: - Content-Length: - - "328" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 5419fa78-1ba8-458c-a051-71a83dc5a06a - status: 200 OK - code: 200 - duration: 75.601666ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/4c9b9741-d82a-43b7-b279-d3e62c206cb9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 327 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:11.015406Z","deletable":true,"description":"","editable":true,"id":"4c9b9741-d82a-43b7-b279-d3e62c206cb9","managed":false,"name":"tf_tests_api_key_app_change","nb_api_keys":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:11.015406Z"}' - headers: - Content-Length: - - "327" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 8f69ded4-8af5-4070-a3b9-4173ad8382d3 - status: 200 OK - code: 200 - duration: 91.165125ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWCG1EGRQF47RZERS79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 412 - uncompressed: false - body: '{"access_key":"SCWCG1EGRQF47RZERS79","application_id":"4c9b9741-d82a-43b7-b279-d3e62c206cb9","created_at":"2025-01-22T15:33:11.867565Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application_change","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:11.867565Z"}' - headers: - Content-Length: - - "412" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 993aa745-ac4e-40ae-8c5f-607c8c0b0a22 - status: 200 OK - code: 200 - duration: 102.897125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/5a5477be-322a-46a9-8b6e-44b6eb725c24 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 328 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:11.018766Z","deletable":true,"description":"","editable":true,"id":"5a5477be-322a-46a9-8b6e-44b6eb725c24","managed":false,"name":"tf_tests_api_key_app_change2","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:11.018766Z"}' - headers: - Content-Length: - - "328" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - dd177e42-967e-41b4-b2f8-67b2284f66c6 - status: 200 OK - code: 200 - duration: 87.960875ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/4c9b9741-d82a-43b7-b279-d3e62c206cb9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 327 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:11.015406Z","deletable":true,"description":"","editable":true,"id":"4c9b9741-d82a-43b7-b279-d3e62c206cb9","managed":false,"name":"tf_tests_api_key_app_change","nb_api_keys":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:11.015406Z"}' - headers: - Content-Length: - - "327" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 258c0140-68e8-4254-8c53-908d69956f11 - status: 200 OK - code: 200 - duration: 104.305709ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWCG1EGRQF47RZERS79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 412 - uncompressed: false - body: '{"access_key":"SCWCG1EGRQF47RZERS79","application_id":"4c9b9741-d82a-43b7-b279-d3e62c206cb9","created_at":"2025-01-22T15:33:11.867565Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application_change","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:11.867565Z"}' - headers: - Content-Length: - - "412" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 7acc0655-f4fe-4a0d-95cd-4903a04ec29d - status: 200 OK - code: 200 - duration: 99.536459ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWCG1EGRQF47RZERS79 - 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: - - Wed, 22 Jan 2025 15:33: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: - - e16c5cb0-83d4-429d-8fd4-57c162750336 - status: 204 No Content - code: 204 - duration: 91.60975ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 106 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"5a5477be-322a-46a9-8b6e-44b6eb725c24","description":"tf_tests_with_application_change"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 446 - uncompressed: false - body: '{"access_key":"SCW49M1J80X3R8DCJGR3","application_id":"5a5477be-322a-46a9-8b6e-44b6eb725c24","created_at":"2025-01-22T15:33:15.150099Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application_change","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:15.150099Z"}' - headers: - Content-Length: - - "446" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - bee8863b-7cc9-4464-975f-820e5f2c0521 - status: 200 OK - code: 200 - duration: 202.583125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW49M1J80X3R8DCJGR3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 412 - uncompressed: false - body: '{"access_key":"SCW49M1J80X3R8DCJGR3","application_id":"5a5477be-322a-46a9-8b6e-44b6eb725c24","created_at":"2025-01-22T15:33:15.150099Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application_change","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:15.150099Z"}' - headers: - Content-Length: - - "412" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 5b1f851b-ebab-4229-bf0c-e5b6eef43ad0 - status: 200 OK - code: 200 - duration: 95.692584ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW49M1J80X3R8DCJGR3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 412 - uncompressed: false - body: '{"access_key":"SCW49M1J80X3R8DCJGR3","application_id":"5a5477be-322a-46a9-8b6e-44b6eb725c24","created_at":"2025-01-22T15:33:15.150099Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application_change","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:15.150099Z"}' - headers: - Content-Length: - - "412" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 0f20b1a3-3962-4220-96f4-a84ddc378244 - status: 200 OK - code: 200 - duration: 98.696625ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/4c9b9741-d82a-43b7-b279-d3e62c206cb9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 327 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:11.015406Z","deletable":true,"description":"","editable":true,"id":"4c9b9741-d82a-43b7-b279-d3e62c206cb9","managed":false,"name":"tf_tests_api_key_app_change","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:11.015406Z"}' - headers: - Content-Length: - - "327" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - c978addb-aa24-4d37-aa0a-68ac85c566f8 - status: 200 OK - code: 200 - duration: 85.867667ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/5a5477be-322a-46a9-8b6e-44b6eb725c24 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 328 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:11.018766Z","deletable":true,"description":"","editable":true,"id":"5a5477be-322a-46a9-8b6e-44b6eb725c24","managed":false,"name":"tf_tests_api_key_app_change2","nb_api_keys":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:11.018766Z"}' - headers: - Content-Length: - - "328" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 68e78ed3-370a-4438-b167-fe0e7ca8a569 - status: 200 OK - code: 200 - duration: 85.965042ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW49M1J80X3R8DCJGR3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 412 - uncompressed: false - body: '{"access_key":"SCW49M1J80X3R8DCJGR3","application_id":"5a5477be-322a-46a9-8b6e-44b6eb725c24","created_at":"2025-01-22T15:33:15.150099Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application_change","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:15.150099Z"}' - headers: - Content-Length: - - "412" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - cbadd4b1-d63b-4399-9503-6c15c98bbe84 - status: 200 OK - code: 200 - duration: 91.469792ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW49M1J80X3R8DCJGR3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 412 - uncompressed: false - body: '{"access_key":"SCW49M1J80X3R8DCJGR3","application_id":"5a5477be-322a-46a9-8b6e-44b6eb725c24","created_at":"2025-01-22T15:33:15.150099Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application_change","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:15.150099Z"}' - headers: - Content-Length: - - "412" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - bc583ba8-a7e0-4fad-9e08-001d2086bd3a - status: 200 OK - code: 200 - duration: 469.832208ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW49M1J80X3R8DCJGR3 - 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: - - Wed, 22 Jan 2025 15:33: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: - - c9f1aca7-d6c9-4460-aec2-81bdea9de98b - status: 204 No Content - code: 204 - duration: 82.482792ms - - id: 22 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/4c9b9741-d82a-43b7-b279-d3e62c206cb9 - 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: - - Wed, 22 Jan 2025 15:33: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: - - be5b4c5b-3170-429f-8e45-5ce2f1eb9b9b - status: 204 No Content - code: 204 - duration: 98.676792ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/5a5477be-322a-46a9-8b6e-44b6eb725c24 - 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: - - Wed, 22 Jan 2025 15:33: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: - - 4c90bcd7-b211-4ac9-a317-dfca1bf41284 - status: 204 No Content - code: 204 - duration: 211.568917ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW49M1J80X3R8DCJGR3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 115 - uncompressed: false - body: '{"message":"resource is not found","resource":"access_key","resource_id":"SCW49M1J80X3R8DCJGR3","type":"not_found"}' - headers: - Content-Length: - - "115" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - fd92a477-eb29-4433-82b2-ff78e3cc0194 - status: 404 Not Found - code: 404 - duration: 117.054333ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/4c9b9741-d82a-43b7-b279-d3e62c206cb9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 132 - uncompressed: false - body: '{"message":"resource is not found","resource":"application","resource_id":"4c9b9741-d82a-43b7-b279-d3e62c206cb9","type":"not_found"}' - headers: - Content-Length: - - "132" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 73dcabd8-4b66-43d1-b0d0-7d63f81dff82 - status: 404 Not Found - code: 404 - duration: 26.507042ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/5a5477be-322a-46a9-8b6e-44b6eb725c24 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 132 - uncompressed: false - body: '{"message":"resource is not found","resource":"application","resource_id":"5a5477be-322a-46a9-8b6e-44b6eb725c24","type":"not_found"}' - headers: - Content-Length: - - "132" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 3b5ad4c5-7563-4a8b-9d8a-52f1f5dc5ad0 - status: 404 Not Found - code: 404 - duration: 22.44925ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 123 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_api_key_app_change2\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 328 + body: "{\"id\":\"5eeb7338-662b-45f1-97a3-e34055634995\", \"name\":\"tf_tests_api_key_app_change2\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:43.883352Z\", \"updated_at\":\"2025-11-17T17:10:43.883352Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "328" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 30af95bd-0e14-4d0b-b01e-3cbcf8327a30 + status: 200 OK + code: 200 + duration: 130.482131ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 122 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_api_key_app_change\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 327 + body: "{\"id\":\"b3530e1c-42e5-4e27-8275-5ecfc9dde87e\", \"name\":\"tf_tests_api_key_app_change\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:43.888864Z\", \"updated_at\":\"2025-11-17T17:10:43.888864Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "327" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6e08dfbc-60f4-4353-899c-e69540957ac0 + status: 200 OK + code: 200 + duration: 133.355609ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/5eeb7338-662b-45f1-97a3-e34055634995 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 328 + body: "{\"id\":\"5eeb7338-662b-45f1-97a3-e34055634995\", \"name\":\"tf_tests_api_key_app_change2\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:43.883352Z\", \"updated_at\":\"2025-11-17T17:10:43.883352Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "328" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 52c0aa49-07ca-4c3f-9487-569266b0271c + status: 200 OK + code: 200 + duration: 42.211263ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/b3530e1c-42e5-4e27-8275-5ecfc9dde87e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 327 + body: "{\"id\":\"b3530e1c-42e5-4e27-8275-5ecfc9dde87e\", \"name\":\"tf_tests_api_key_app_change\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:43.888864Z\", \"updated_at\":\"2025-11-17T17:10:43.888864Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "327" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3fd98f57-f92f-4a4c-baf3-2a4f8d91805e + status: 200 OK + code: 200 + duration: 87.636635ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 106 + host: api.scaleway.com + body: "{\"application_id\":\"b3530e1c-42e5-4e27-8275-5ecfc9dde87e\",\"description\":\"tf_tests_with_application_change\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 448 + body: "{\"access_key\":\"SCWHHES1Z8KZKYE67W4A\", \"secret_key\":\"11111111-1111-1111-1111-111111111111\", \"description\":\"tf_tests_with_application_change\", \"created_at\":\"2025-11-17T17:10:44.308614Z\", \"updated_at\":\"2025-11-17T17:10:44.308614Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"b3530e1c-42e5-4e27-8275-5ecfc9dde87e\"}" + headers: + Content-Length: + - "448" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c99a66bf-b7fe-4642-82b8-30155c97c1b5 + status: 200 OK + code: 200 + duration: 333.074529ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 414 + body: "{\"access_key\":\"SCWHHES1Z8KZKYE67W4A\", \"secret_key\":null, \"description\":\"tf_tests_with_application_change\", \"created_at\":\"2025-11-17T17:10:44.308614Z\", \"updated_at\":\"2025-11-17T17:10:44.308614Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"b3530e1c-42e5-4e27-8275-5ecfc9dde87e\"}" + headers: + Content-Length: + - "414" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c6a813bb-f332-4f0b-9f09-d9e27b094547 + status: 200 OK + code: 200 + duration: 212.5894ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 414 + body: "{\"access_key\":\"SCWHHES1Z8KZKYE67W4A\", \"secret_key\":null, \"description\":\"tf_tests_with_application_change\", \"created_at\":\"2025-11-17T17:10:44.308614Z\", \"updated_at\":\"2025-11-17T17:10:44.308614Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"b3530e1c-42e5-4e27-8275-5ecfc9dde87e\"}" + headers: + Content-Length: + - "414" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 80997902-6d98-4747-a035-6c41daf0849b + status: 200 OK + code: 200 + duration: 46.616372ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/5eeb7338-662b-45f1-97a3-e34055634995 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 328 + body: "{\"id\":\"5eeb7338-662b-45f1-97a3-e34055634995\", \"name\":\"tf_tests_api_key_app_change2\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:43.883352Z\", \"updated_at\":\"2025-11-17T17:10:43.883352Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "328" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - bd815082-c5f6-4a79-9440-032d3a060185 + status: 200 OK + code: 200 + duration: 57.599887ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/b3530e1c-42e5-4e27-8275-5ecfc9dde87e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 327 + body: "{\"id\":\"b3530e1c-42e5-4e27-8275-5ecfc9dde87e\", \"name\":\"tf_tests_api_key_app_change\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:43.888864Z\", \"updated_at\":\"2025-11-17T17:10:43.888864Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":1, \"tags\":[]}" + headers: + Content-Length: + - "327" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e3219808-6280-4243-9b0a-90d2c869969f + status: 200 OK + code: 200 + duration: 74.011738ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 414 + body: "{\"access_key\":\"SCWHHES1Z8KZKYE67W4A\", \"secret_key\":null, \"description\":\"tf_tests_with_application_change\", \"created_at\":\"2025-11-17T17:10:44.308614Z\", \"updated_at\":\"2025-11-17T17:10:44.308614Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"b3530e1c-42e5-4e27-8275-5ecfc9dde87e\"}" + headers: + Content-Length: + - "414" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - abb9fd8d-d83b-406c-9de5-5deb071a72e4 + status: 200 OK + code: 200 + duration: 170.323033ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/5eeb7338-662b-45f1-97a3-e34055634995 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 328 + body: "{\"id\":\"5eeb7338-662b-45f1-97a3-e34055634995\", \"name\":\"tf_tests_api_key_app_change2\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:43.883352Z\", \"updated_at\":\"2025-11-17T17:10:43.883352Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "328" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e896c169-aeda-4815-95fc-87ef8b341498 + status: 200 OK + code: 200 + duration: 47.546093ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/b3530e1c-42e5-4e27-8275-5ecfc9dde87e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 327 + body: "{\"id\":\"b3530e1c-42e5-4e27-8275-5ecfc9dde87e\", \"name\":\"tf_tests_api_key_app_change\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:43.888864Z\", \"updated_at\":\"2025-11-17T17:10:43.888864Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":1, \"tags\":[]}" + headers: + Content-Length: + - "327" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0225e627-65a8-486a-b2c8-b1684052cd68 + status: 200 OK + code: 200 + duration: 52.95589ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 414 + body: "{\"access_key\":\"SCWHHES1Z8KZKYE67W4A\", \"secret_key\":null, \"description\":\"tf_tests_with_application_change\", \"created_at\":\"2025-11-17T17:10:44.308614Z\", \"updated_at\":\"2025-11-17T17:10:44.308614Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"b3530e1c-42e5-4e27-8275-5ecfc9dde87e\"}" + headers: + Content-Length: + - "414" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b170535f-e95b-4221-9e97-7cc95d192b6a + status: 200 OK + code: 200 + duration: 69.83452ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ff801793-7a64-4926-92e1-a82bf1890847 + status: 204 No Content + code: 204 + duration: 185.787854ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 106 + host: api.scaleway.com + body: "{\"application_id\":\"5eeb7338-662b-45f1-97a3-e34055634995\",\"description\":\"tf_tests_with_application_change\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 448 + body: "{\"access_key\":\"SCW0BMQ92YS4RAVJV5KB\", \"secret_key\":\"11111111-1111-1111-1111-111111111111\", \"description\":\"tf_tests_with_application_change\", \"created_at\":\"2025-11-17T17:10:47.543305Z\", \"updated_at\":\"2025-11-17T17:10:47.543305Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"5eeb7338-662b-45f1-97a3-e34055634995\"}" + headers: + Content-Length: + - "448" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 43cbb221-eeea-48ce-aeac-73c88e7e482f + status: 200 OK + code: 200 + duration: 224.184967ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 414 + body: "{\"access_key\":\"SCW0BMQ92YS4RAVJV5KB\", \"secret_key\":null, \"description\":\"tf_tests_with_application_change\", \"created_at\":\"2025-11-17T17:10:47.543305Z\", \"updated_at\":\"2025-11-17T17:10:47.543305Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"5eeb7338-662b-45f1-97a3-e34055634995\"}" + headers: + Content-Length: + - "414" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2ab8519a-de6a-4859-81ae-d6d9814f619e + status: 200 OK + code: 200 + duration: 63.615842ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 414 + body: "{\"access_key\":\"SCW0BMQ92YS4RAVJV5KB\", \"secret_key\":null, \"description\":\"tf_tests_with_application_change\", \"created_at\":\"2025-11-17T17:10:47.543305Z\", \"updated_at\":\"2025-11-17T17:10:47.543305Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"5eeb7338-662b-45f1-97a3-e34055634995\"}" + headers: + Content-Length: + - "414" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 53d947cc-6562-4cfd-8872-6f3d68d0076e + status: 200 OK + code: 200 + duration: 65.467573ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/b3530e1c-42e5-4e27-8275-5ecfc9dde87e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 327 + body: "{\"id\":\"b3530e1c-42e5-4e27-8275-5ecfc9dde87e\", \"name\":\"tf_tests_api_key_app_change\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:43.888864Z\", \"updated_at\":\"2025-11-17T17:10:43.888864Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "327" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2c12b9f4-bfdc-4aa5-8736-e659c5370d18 + status: 200 OK + code: 200 + duration: 74.046755ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/5eeb7338-662b-45f1-97a3-e34055634995 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 328 + body: "{\"id\":\"5eeb7338-662b-45f1-97a3-e34055634995\", \"name\":\"tf_tests_api_key_app_change2\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:43.883352Z\", \"updated_at\":\"2025-11-17T17:10:43.883352Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":1, \"tags\":[]}" + headers: + Content-Length: + - "328" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7747e3e7-1383-408a-a540-ea0f29c48cee + status: 200 OK + code: 200 + duration: 73.63158ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 414 + body: "{\"access_key\":\"SCW0BMQ92YS4RAVJV5KB\", \"secret_key\":null, \"description\":\"tf_tests_with_application_change\", \"created_at\":\"2025-11-17T17:10:47.543305Z\", \"updated_at\":\"2025-11-17T17:10:47.543305Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"5eeb7338-662b-45f1-97a3-e34055634995\"}" + headers: + Content-Length: + - "414" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 16f02f24-7d3c-4e5f-8491-6db5109c0894 + status: 200 OK + code: 200 + duration: 102.870724ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 414 + body: "{\"access_key\":\"SCW0BMQ92YS4RAVJV5KB\", \"secret_key\":null, \"description\":\"tf_tests_with_application_change\", \"created_at\":\"2025-11-17T17:10:47.543305Z\", \"updated_at\":\"2025-11-17T17:10:47.543305Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"5eeb7338-662b-45f1-97a3-e34055634995\"}" + headers: + Content-Length: + - "414" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5c1920cb-781b-4828-8aba-49504a64ca1b + status: 200 OK + code: 200 + duration: 42.538549ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0deef17f-6b6c-411e-bad5-06ba69082131 + status: 204 No Content + code: 204 + duration: 89.083922ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/b3530e1c-42e5-4e27-8275-5ecfc9dde87e + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 4ff43591-3405-4b5e-8e90-8f6097056e8f + status: 204 No Content + code: 204 + duration: 94.18657ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/5eeb7338-662b-45f1-97a3-e34055634995 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - bb0de596-11d8-4a38-98f6-36463f676b0d + status: 204 No Content + code: 204 + duration: 61.168059ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 115 + body: "{\"message\":\"resource is not found\",\"resource\":\"access_key\",\"resource_id\":\"SCW0BMQ92YS4RAVJV5KB\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "115" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 21163735-b5d4-41b2-b737-657371bfe47a + status: 404 Not Found + code: 404 + duration: 62.316239ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/b3530e1c-42e5-4e27-8275-5ecfc9dde87e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 132 + body: "{\"message\":\"resource is not found\",\"resource\":\"application\",\"resource_id\":\"b3530e1c-42e5-4e27-8275-5ecfc9dde87e\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "132" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c2e72f43-ce48-4b8e-ba39-46666deeb8d3 + status: 404 Not Found + code: 404 + duration: 92.139603ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/5eeb7338-662b-45f1-97a3-e34055634995 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 132 + body: "{\"message\":\"resource is not found\",\"resource\":\"application\",\"resource_id\":\"5eeb7338-662b-45f1-97a3-e34055634995\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "132" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ef117e83-a283-4932-a8b0-c94eb0900dc4 + status: 404 Not Found + code: 404 + duration: 63.25871ms diff --git a/internal/services/iam/testdata/api-key-with-application.cassette.yaml b/internal/services/iam/testdata/api-key-with-application.cassette.yaml index c68464821..16d8478c7 100644 --- a/internal/services/iam/testdata/api-key-with-application.cassette.yaml +++ b/internal/services/iam/testdata/api-key-with-application.cassette.yaml @@ -1,936 +1,616 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 117 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_app_key_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:11.184073Z","deletable":true,"description":"","editable":true,"id":"b092820e-b74a-490b-8df6-79da1e470153","managed":false,"name":"tf_tests_app_key_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:11.184073Z"}' - headers: - Content-Length: - - "322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 25acac33-9590-472d-9fa2-c764b4cce4be - status: 200 OK - code: 200 - duration: 610.641875ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b092820e-b74a-490b-8df6-79da1e470153 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:11.184073Z","deletable":true,"description":"","editable":true,"id":"b092820e-b74a-490b-8df6-79da1e470153","managed":false,"name":"tf_tests_app_key_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:11.184073Z"}' - headers: - Content-Length: - - "322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 5b498c5f-ab36-42db-ac74-aaa66eaef53d - status: 200 OK - code: 200 - duration: 98.952ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 99 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"b092820e-b74a-490b-8df6-79da1e470153","description":"tf_tests_with_application"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 439 - uncompressed: false - body: '{"access_key":"SCWT20PX4ZM5YWG85W2W","application_id":"b092820e-b74a-490b-8df6-79da1e470153","created_at":"2025-01-22T15:33:11.973462Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:11.973462Z"}' - headers: - Content-Length: - - "439" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 206eed89-7e89-40e2-bd83-be50dd067cd6 - status: 200 OK - code: 200 - duration: 207.009209ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT20PX4ZM5YWG85W2W - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - body: '{"access_key":"SCWT20PX4ZM5YWG85W2W","application_id":"b092820e-b74a-490b-8df6-79da1e470153","created_at":"2025-01-22T15:33:11.973462Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:11.973462Z"}' - headers: - Content-Length: - - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - d3ed3cb6-cd1e-461e-a26e-00217b95808f - status: 200 OK - code: 200 - duration: 85.228541ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT20PX4ZM5YWG85W2W - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - body: '{"access_key":"SCWT20PX4ZM5YWG85W2W","application_id":"b092820e-b74a-490b-8df6-79da1e470153","created_at":"2025-01-22T15:33:11.973462Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:11.973462Z"}' - headers: - Content-Length: - - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 5a5b643f-2844-4695-bdfd-9319f892cd99 - status: 200 OK - code: 200 - duration: 90.998208ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b092820e-b74a-490b-8df6-79da1e470153 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:11.184073Z","deletable":true,"description":"","editable":true,"id":"b092820e-b74a-490b-8df6-79da1e470153","managed":false,"name":"tf_tests_app_key_basic","nb_api_keys":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:11.184073Z"}' - headers: - Content-Length: - - "322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - f27eddde-e9dd-4eee-bceb-0bd0c8535ba0 - status: 200 OK - code: 200 - duration: 100.345291ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT20PX4ZM5YWG85W2W - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - body: '{"access_key":"SCWT20PX4ZM5YWG85W2W","application_id":"b092820e-b74a-490b-8df6-79da1e470153","created_at":"2025-01-22T15:33:11.973462Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:11.973462Z"}' - headers: - Content-Length: - - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 15ce2d27-2f55-432b-b0a2-c3d0f76de86b - status: 200 OK - code: 200 - duration: 100.576125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b092820e-b74a-490b-8df6-79da1e470153 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:11.184073Z","deletable":true,"description":"","editable":true,"id":"b092820e-b74a-490b-8df6-79da1e470153","managed":false,"name":"tf_tests_app_key_basic","nb_api_keys":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:11.184073Z"}' - headers: - Content-Length: - - "322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - c2311b51-7bcb-4583-9f97-cef4db53f35e - status: 200 OK - code: 200 - duration: 92.967208ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT20PX4ZM5YWG85W2W - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - body: '{"access_key":"SCWT20PX4ZM5YWG85W2W","application_id":"b092820e-b74a-490b-8df6-79da1e470153","created_at":"2025-01-22T15:33:11.973462Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:11.973462Z"}' - headers: - Content-Length: - - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 7984f98b-087c-4c9a-8bd1-38fbd0d0f591 - status: 200 OK - code: 200 - duration: 99.883542ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 51 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"description":"tf_tests_with_application_changed"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT20PX4ZM5YWG85W2W - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 413 - uncompressed: false - body: '{"access_key":"SCWT20PX4ZM5YWG85W2W","application_id":"b092820e-b74a-490b-8df6-79da1e470153","created_at":"2025-01-22T15:33:11.973462Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application_changed","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:14.928700Z"}' - headers: - Content-Length: - - "413" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 96f27bdd-062e-4153-ad3b-7e363b5a7386 - status: 200 OK - code: 200 - duration: 93.246667ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT20PX4ZM5YWG85W2W - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 413 - uncompressed: false - body: '{"access_key":"SCWT20PX4ZM5YWG85W2W","application_id":"b092820e-b74a-490b-8df6-79da1e470153","created_at":"2025-01-22T15:33:11.973462Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application_changed","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:14.928700Z"}' - headers: - Content-Length: - - "413" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 4d633f27-52f9-4d64-9627-aff248d794bb - status: 200 OK - code: 200 - duration: 109.283ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT20PX4ZM5YWG85W2W - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 413 - uncompressed: false - body: '{"access_key":"SCWT20PX4ZM5YWG85W2W","application_id":"b092820e-b74a-490b-8df6-79da1e470153","created_at":"2025-01-22T15:33:11.973462Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application_changed","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:14.928700Z"}' - headers: - Content-Length: - - "413" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 18955b1b-04e7-426c-858a-675d1e7da4d0 - status: 200 OK - code: 200 - duration: 98.27975ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b092820e-b74a-490b-8df6-79da1e470153 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:11.184073Z","deletable":true,"description":"","editable":true,"id":"b092820e-b74a-490b-8df6-79da1e470153","managed":false,"name":"tf_tests_app_key_basic","nb_api_keys":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:11.184073Z"}' - headers: - Content-Length: - - "322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - cbe9b5fe-0131-4624-8c49-8b2a0ee39584 - status: 200 OK - code: 200 - duration: 101.605ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT20PX4ZM5YWG85W2W - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 413 - uncompressed: false - body: '{"access_key":"SCWT20PX4ZM5YWG85W2W","application_id":"b092820e-b74a-490b-8df6-79da1e470153","created_at":"2025-01-22T15:33:11.973462Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application_changed","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:14.928700Z"}' - headers: - Content-Length: - - "413" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 388322a6-a4e6-494e-ba15-e93230b055fc - status: 200 OK - code: 200 - duration: 95.9485ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT20PX4ZM5YWG85W2W - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 413 - uncompressed: false - body: '{"access_key":"SCWT20PX4ZM5YWG85W2W","application_id":"b092820e-b74a-490b-8df6-79da1e470153","created_at":"2025-01-22T15:33:11.973462Z","creation_ip":"51.159.73.9","default_project_id":"105bdce1-64c0-48ab-899d-868455867ecf","deletable":true,"description":"tf_tests_with_application_changed","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:33:14.928700Z"}' - headers: - Content-Length: - - "413" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - fa8b4d68-a1d0-4fb1-b30f-5ad165d82c9e - status: 200 OK - code: 200 - duration: 699.769916ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT20PX4ZM5YWG85W2W - 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: - - Wed, 22 Jan 2025 15:33: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: - - c867c455-f543-42ef-9075-7043297e9e28 - status: 204 No Content - code: 204 - duration: 95.659083ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b092820e-b74a-490b-8df6-79da1e470153 - 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: - - Wed, 22 Jan 2025 15:33: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: - - a8ebbaa0-99cd-4b29-a885-3cde7923e339 - status: 204 No Content - code: 204 - duration: 208.48725ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWT20PX4ZM5YWG85W2W - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 115 - uncompressed: false - body: '{"message":"resource is not found","resource":"access_key","resource_id":"SCWT20PX4ZM5YWG85W2W","type":"not_found"}' - headers: - Content-Length: - - "115" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - aeab0a73-f58e-47ae-972d-70db42d2ef5e - status: 404 Not Found - code: 404 - duration: 118.429875ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b092820e-b74a-490b-8df6-79da1e470153 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 132 - uncompressed: false - body: '{"message":"resource is not found","resource":"application","resource_id":"b092820e-b74a-490b-8df6-79da1e470153","type":"not_found"}' - headers: - Content-Length: - - "132" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - dd909ccb-769a-4d1c-8177-3e210413e9b9 - status: 404 Not Found - code: 404 - duration: 25.978292ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 117 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_app_key_basic\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"4403e5c1-26d4-46a0-8682-3614ea7c4e1f\", \"name\":\"tf_tests_app_key_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:43.973908Z\", \"updated_at\":\"2025-11-17T17:10:43.973908Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f4d53b81-24e6-484f-8837-6f4c3677f751 + status: 200 OK + code: 200 + duration: 222.496122ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/4403e5c1-26d4-46a0-8682-3614ea7c4e1f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"4403e5c1-26d4-46a0-8682-3614ea7c4e1f\", \"name\":\"tf_tests_app_key_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:43.973908Z\", \"updated_at\":\"2025-11-17T17:10:43.973908Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a1ad8cfd-3b26-4886-a70f-64281bed473f + status: 200 OK + code: 200 + duration: 107.073955ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 99 + host: api.scaleway.com + body: "{\"application_id\":\"4403e5c1-26d4-46a0-8682-3614ea7c4e1f\",\"description\":\"tf_tests_with_application\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"access_key\":\"SCWBA8QJR93XCH7XWMM0\", \"secret_key\":\"11111111-1111-1111-1111-111111111111\", \"description\":\"tf_tests_with_application\", \"created_at\":\"2025-11-17T17:10:44.275045Z\", \"updated_at\":\"2025-11-17T17:10:44.275045Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"4403e5c1-26d4-46a0-8682-3614ea7c4e1f\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 086e388c-78a2-48d8-8c3e-dee8197c1e44 + status: 200 OK + code: 200 + duration: 217.466979ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: "{\"access_key\":\"SCWBA8QJR93XCH7XWMM0\", \"secret_key\":null, \"description\":\"tf_tests_with_application\", \"created_at\":\"2025-11-17T17:10:44.275045Z\", \"updated_at\":\"2025-11-17T17:10:44.275045Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"4403e5c1-26d4-46a0-8682-3614ea7c4e1f\"}" + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f0d1f6d4-f066-4b7d-9ab7-4e4c837c0a9d + status: 200 OK + code: 200 + duration: 214.602565ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: "{\"access_key\":\"SCWBA8QJR93XCH7XWMM0\", \"secret_key\":null, \"description\":\"tf_tests_with_application\", \"created_at\":\"2025-11-17T17:10:44.275045Z\", \"updated_at\":\"2025-11-17T17:10:44.275045Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"4403e5c1-26d4-46a0-8682-3614ea7c4e1f\"}" + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 642628e2-6577-47f7-9907-04686a96c036 + status: 200 OK + code: 200 + duration: 210.28585ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/4403e5c1-26d4-46a0-8682-3614ea7c4e1f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"4403e5c1-26d4-46a0-8682-3614ea7c4e1f\", \"name\":\"tf_tests_app_key_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:43.973908Z\", \"updated_at\":\"2025-11-17T17:10:43.973908Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":1, \"tags\":[]}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 456b349d-5194-431f-b49e-8c9e425671d2 + status: 200 OK + code: 200 + duration: 47.139359ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: "{\"access_key\":\"SCWBA8QJR93XCH7XWMM0\", \"secret_key\":null, \"description\":\"tf_tests_with_application\", \"created_at\":\"2025-11-17T17:10:44.275045Z\", \"updated_at\":\"2025-11-17T17:10:44.275045Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"4403e5c1-26d4-46a0-8682-3614ea7c4e1f\"}" + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e335e4af-fd74-425b-b984-ba3cf4dc0a3e + status: 200 OK + code: 200 + duration: 231.308658ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/4403e5c1-26d4-46a0-8682-3614ea7c4e1f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"4403e5c1-26d4-46a0-8682-3614ea7c4e1f\", \"name\":\"tf_tests_app_key_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:43.973908Z\", \"updated_at\":\"2025-11-17T17:10:43.973908Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":1, \"tags\":[]}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 70aaa6d9-cac2-47a1-94b1-600c29f64738 + status: 200 OK + code: 200 + duration: 63.378818ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: "{\"access_key\":\"SCWBA8QJR93XCH7XWMM0\", \"secret_key\":null, \"description\":\"tf_tests_with_application\", \"created_at\":\"2025-11-17T17:10:44.275045Z\", \"updated_at\":\"2025-11-17T17:10:44.275045Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"4403e5c1-26d4-46a0-8682-3614ea7c4e1f\"}" + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0a663ee7-f741-4abb-b52e-943697e0a8ee + status: 200 OK + code: 200 + duration: 68.70229ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 51 + host: api.scaleway.com + body: "{\"description\":\"tf_tests_with_application_changed\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 415 + body: "{\"access_key\":\"SCWBA8QJR93XCH7XWMM0\", \"secret_key\":null, \"description\":\"tf_tests_with_application_changed\", \"created_at\":\"2025-11-17T17:10:44.275045Z\", \"updated_at\":\"2025-11-17T17:10:47.258404Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"4403e5c1-26d4-46a0-8682-3614ea7c4e1f\"}" + headers: + Content-Length: + - "415" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 70c91ead-52bf-4a02-8982-3cb8b50039db + status: 200 OK + code: 200 + duration: 86.158785ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 415 + body: "{\"access_key\":\"SCWBA8QJR93XCH7XWMM0\", \"secret_key\":null, \"description\":\"tf_tests_with_application_changed\", \"created_at\":\"2025-11-17T17:10:44.275045Z\", \"updated_at\":\"2025-11-17T17:10:47.258404Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"4403e5c1-26d4-46a0-8682-3614ea7c4e1f\"}" + headers: + Content-Length: + - "415" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ee6690c3-aa41-427b-a78d-61eb35627594 + status: 200 OK + code: 200 + duration: 60.361265ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 415 + body: "{\"access_key\":\"SCWBA8QJR93XCH7XWMM0\", \"secret_key\":null, \"description\":\"tf_tests_with_application_changed\", \"created_at\":\"2025-11-17T17:10:44.275045Z\", \"updated_at\":\"2025-11-17T17:10:47.258404Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"4403e5c1-26d4-46a0-8682-3614ea7c4e1f\"}" + headers: + Content-Length: + - "415" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8f436df0-428b-493e-a86b-cf94c3ee19e0 + status: 200 OK + code: 200 + duration: 96.785366ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/4403e5c1-26d4-46a0-8682-3614ea7c4e1f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"4403e5c1-26d4-46a0-8682-3614ea7c4e1f\", \"name\":\"tf_tests_app_key_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:43.973908Z\", \"updated_at\":\"2025-11-17T17:10:43.973908Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":1, \"tags\":[]}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 4e2996ca-7e83-4fed-8753-3cfcca11970c + status: 200 OK + code: 200 + duration: 50.765915ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 415 + body: "{\"access_key\":\"SCWBA8QJR93XCH7XWMM0\", \"secret_key\":null, \"description\":\"tf_tests_with_application_changed\", \"created_at\":\"2025-11-17T17:10:44.275045Z\", \"updated_at\":\"2025-11-17T17:10:47.258404Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"4403e5c1-26d4-46a0-8682-3614ea7c4e1f\"}" + headers: + Content-Length: + - "415" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 215a32ea-3b82-4b77-88f3-0a89c42d9cf9 + status: 200 OK + code: 200 + duration: 86.972938ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 415 + body: "{\"access_key\":\"SCWBA8QJR93XCH7XWMM0\", \"secret_key\":null, \"description\":\"tf_tests_with_application_changed\", \"created_at\":\"2025-11-17T17:10:44.275045Z\", \"updated_at\":\"2025-11-17T17:10:47.258404Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"4403e5c1-26d4-46a0-8682-3614ea7c4e1f\"}" + headers: + Content-Length: + - "415" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 51985865-3d33-4163-9260-2a84585557c6 + status: 200 OK + code: 200 + duration: 51.264306ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1b62415b-d601-4445-bae0-30405e9c94bf + status: 204 No Content + code: 204 + duration: 124.603785ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/4403e5c1-26d4-46a0-8682-3614ea7c4e1f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 853d3a8d-852f-469d-83cd-f11ea6a9dfbd + status: 204 No Content + code: 204 + duration: 99.297524ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 115 + body: "{\"message\":\"resource is not found\",\"resource\":\"access_key\",\"resource_id\":\"SCWBA8QJR93XCH7XWMM0\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "115" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 74ea8a1c-28b5-4559-a365-00788bc43cc2 + status: 404 Not Found + code: 404 + duration: 78.518006ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/4403e5c1-26d4-46a0-8682-3614ea7c4e1f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 132 + body: "{\"message\":\"resource is not found\",\"resource\":\"application\",\"resource_id\":\"4403e5c1-26d4-46a0-8682-3614ea7c4e1f\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "132" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - caa23da8-a2d8-43ec-86bf-97a68ebdd923 + status: 404 Not Found + code: 404 + duration: 90.743606ms diff --git a/internal/services/iam/testdata/application-basic.cassette.yaml b/internal/services/iam/testdata/application-basic.cassette.yaml index 12635d2f9..931cdad1a 100644 --- a/internal/services/iam/testdata/application-basic.cassette.yaml +++ b/internal/services/iam/testdata/application-basic.cassette.yaml @@ -1,544 +1,359 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 144 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_app_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"a description","tags":["tf_tests","tests"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 350 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:05.762737Z","deletable":true,"description":"a description","editable":true,"id":"d57abae9-5976-4358-891f-73da68b1b89f","managed":false,"name":"tf_tests_app_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests","tests"],"updated_at":"2025-01-22T15:33:05.762737Z"}' - headers: - Content-Length: - - "350" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:05 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: - - d86e0ab2-dc6a-4d12-81cd-679cba2e89f3 - status: 200 OK - code: 200 - duration: 563.7815ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/d57abae9-5976-4358-891f-73da68b1b89f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 350 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:05.762737Z","deletable":true,"description":"a description","editable":true,"id":"d57abae9-5976-4358-891f-73da68b1b89f","managed":false,"name":"tf_tests_app_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests","tests"],"updated_at":"2025-01-22T15:33:05.762737Z"}' - headers: - Content-Length: - - "350" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:05 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: - - 7d7311a3-cc3c-4039-bdad-028ef65efb46 - status: 200 OK - code: 200 - duration: 99.791792ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/d57abae9-5976-4358-891f-73da68b1b89f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 350 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:05.762737Z","deletable":true,"description":"a description","editable":true,"id":"d57abae9-5976-4358-891f-73da68b1b89f","managed":false,"name":"tf_tests_app_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests","tests"],"updated_at":"2025-01-22T15:33:05.762737Z"}' - headers: - Content-Length: - - "350" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:06 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: - - c50fd54f-b36c-4b0b-970f-ac671a670d27 - status: 200 OK - code: 200 - duration: 99.799666ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/d57abae9-5976-4358-891f-73da68b1b89f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 350 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:05.762737Z","deletable":true,"description":"a description","editable":true,"id":"d57abae9-5976-4358-891f-73da68b1b89f","managed":false,"name":"tf_tests_app_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests","tests"],"updated_at":"2025-01-22T15:33:05.762737Z"}' - headers: - Content-Length: - - "350" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 5de48d26-4dce-4b68-b6fa-aac1276bcfd4 - status: 200 OK - code: 200 - duration: 95.579291ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/d57abae9-5976-4358-891f-73da68b1b89f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 350 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:05.762737Z","deletable":true,"description":"a description","editable":true,"id":"d57abae9-5976-4358-891f-73da68b1b89f","managed":false,"name":"tf_tests_app_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests","tests"],"updated_at":"2025-01-22T15:33:05.762737Z"}' - headers: - Content-Length: - - "350" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 3d074ffd-3da2-4286-b266-7944728efe15 - status: 200 OK - code: 200 - duration: 123.505625ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 82 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_app_basic_rename","description":"another description","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/d57abae9-5976-4358-891f-73da68b1b89f - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:05.762737Z","deletable":true,"description":"another description","editable":true,"id":"d57abae9-5976-4358-891f-73da68b1b89f","managed":false,"name":"tf_tests_app_basic_rename","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:09.488998Z"}' - headers: - Content-Length: - - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - ececc3f8-d492-4149-b614-a94aad38b01f - status: 200 OK - code: 200 - duration: 96.596458ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/d57abae9-5976-4358-891f-73da68b1b89f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:05.762737Z","deletable":true,"description":"another description","editable":true,"id":"d57abae9-5976-4358-891f-73da68b1b89f","managed":false,"name":"tf_tests_app_basic_rename","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:09.488998Z"}' - headers: - Content-Length: - - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 4ed2f7c3-2cd0-4ad1-afc6-e0832eb4e0af - status: 200 OK - code: 200 - duration: 106.69675ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/d57abae9-5976-4358-891f-73da68b1b89f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:05.762737Z","deletable":true,"description":"another description","editable":true,"id":"d57abae9-5976-4358-891f-73da68b1b89f","managed":false,"name":"tf_tests_app_basic_rename","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:09.488998Z"}' - headers: - Content-Length: - - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 95841832-651b-45d0-8fc2-b6d580e74980 - status: 200 OK - code: 200 - duration: 83.672583ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/d57abae9-5976-4358-891f-73da68b1b89f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:05.762737Z","deletable":true,"description":"another description","editable":true,"id":"d57abae9-5976-4358-891f-73da68b1b89f","managed":false,"name":"tf_tests_app_basic_rename","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:09.488998Z"}' - headers: - Content-Length: - - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 0e4ef396-6fbd-4431-a128-3219ddfe441d - status: 200 OK - code: 200 - duration: 106.87525ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/d57abae9-5976-4358-891f-73da68b1b89f - 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: - - Wed, 22 Jan 2025 15:33: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: - - 3abba4ab-5390-4e9c-b23b-f737880add1c - status: 204 No Content - code: 204 - duration: 82.69575ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/d57abae9-5976-4358-891f-73da68b1b89f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 132 - uncompressed: false - body: '{"message":"resource is not found","resource":"application","resource_id":"d57abae9-5976-4358-891f-73da68b1b89f","type":"not_found"}' - headers: - Content-Length: - - "132" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 91664d59-5d1b-4971-a46e-420060e1557a - status: 404 Not Found - code: 404 - duration: 23.1575ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 144 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_app_basic\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"a description\",\"tags\":[\"tf_tests\",\"tests\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 350 + body: "{\"id\":\"cc1340ad-1de9-4085-9b2a-b604e77f3679\", \"name\":\"tf_tests_app_basic\", \"description\":\"a description\", \"created_at\":\"2025-11-17T17:10:30.465415Z\", \"updated_at\":\"2025-11-17T17:10:30.465415Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[\"tf_tests\", \"tests\"]}" + headers: + Content-Length: + - "350" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ac55a593-7b29-4d48-bb56-be99caa45699 + status: 200 OK + code: 200 + duration: 186.754925ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/cc1340ad-1de9-4085-9b2a-b604e77f3679 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 350 + body: "{\"id\":\"cc1340ad-1de9-4085-9b2a-b604e77f3679\", \"name\":\"tf_tests_app_basic\", \"description\":\"a description\", \"created_at\":\"2025-11-17T17:10:30.465415Z\", \"updated_at\":\"2025-11-17T17:10:30.465415Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[\"tf_tests\", \"tests\"]}" + headers: + Content-Length: + - "350" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 374ff8e1-9ee8-4080-ba04-237fd282a3d1 + status: 200 OK + code: 200 + duration: 255.656677ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/cc1340ad-1de9-4085-9b2a-b604e77f3679 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 350 + body: "{\"id\":\"cc1340ad-1de9-4085-9b2a-b604e77f3679\", \"name\":\"tf_tests_app_basic\", \"description\":\"a description\", \"created_at\":\"2025-11-17T17:10:30.465415Z\", \"updated_at\":\"2025-11-17T17:10:30.465415Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[\"tf_tests\", \"tests\"]}" + headers: + Content-Length: + - "350" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1d8d9b1a-73f9-4004-9631-8e0722c4b1c6 + status: 200 OK + code: 200 + duration: 168.492364ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/cc1340ad-1de9-4085-9b2a-b604e77f3679 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 350 + body: "{\"id\":\"cc1340ad-1de9-4085-9b2a-b604e77f3679\", \"name\":\"tf_tests_app_basic\", \"description\":\"a description\", \"created_at\":\"2025-11-17T17:10:30.465415Z\", \"updated_at\":\"2025-11-17T17:10:30.465415Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[\"tf_tests\", \"tests\"]}" + headers: + Content-Length: + - "350" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b5645968-3f5a-4a14-a074-fcbdeadadcd6 + status: 200 OK + code: 200 + duration: 88.795533ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/cc1340ad-1de9-4085-9b2a-b604e77f3679 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 350 + body: "{\"id\":\"cc1340ad-1de9-4085-9b2a-b604e77f3679\", \"name\":\"tf_tests_app_basic\", \"description\":\"a description\", \"created_at\":\"2025-11-17T17:10:30.465415Z\", \"updated_at\":\"2025-11-17T17:10:30.465415Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[\"tf_tests\", \"tests\"]}" + headers: + Content-Length: + - "350" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - dbffe67e-b51e-4b67-a2ef-f358d0b6081e + status: 200 OK + code: 200 + duration: 52.556421ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 82 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_app_basic_rename\",\"description\":\"another description\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/cc1340ad-1de9-4085-9b2a-b604e77f3679 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"id\":\"cc1340ad-1de9-4085-9b2a-b604e77f3679\", \"name\":\"tf_tests_app_basic_rename\", \"description\":\"another description\", \"created_at\":\"2025-11-17T17:10:30.465415Z\", \"updated_at\":\"2025-11-17T17:10:32.677372Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "344" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2f2758a0-9be2-4a4c-be6c-8df777a07942 + status: 200 OK + code: 200 + duration: 73.869716ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/cc1340ad-1de9-4085-9b2a-b604e77f3679 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"id\":\"cc1340ad-1de9-4085-9b2a-b604e77f3679\", \"name\":\"tf_tests_app_basic_rename\", \"description\":\"another description\", \"created_at\":\"2025-11-17T17:10:30.465415Z\", \"updated_at\":\"2025-11-17T17:10:32.677372Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "344" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9a51ef88-5740-46b3-9d07-be24fb61ec42 + status: 200 OK + code: 200 + duration: 99.129464ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/cc1340ad-1de9-4085-9b2a-b604e77f3679 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"id\":\"cc1340ad-1de9-4085-9b2a-b604e77f3679\", \"name\":\"tf_tests_app_basic_rename\", \"description\":\"another description\", \"created_at\":\"2025-11-17T17:10:30.465415Z\", \"updated_at\":\"2025-11-17T17:10:32.677372Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "344" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 39750e61-d892-472b-a701-671b4860095f + status: 200 OK + code: 200 + duration: 55.846462ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/cc1340ad-1de9-4085-9b2a-b604e77f3679 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"id\":\"cc1340ad-1de9-4085-9b2a-b604e77f3679\", \"name\":\"tf_tests_app_basic_rename\", \"description\":\"another description\", \"created_at\":\"2025-11-17T17:10:30.465415Z\", \"updated_at\":\"2025-11-17T17:10:32.677372Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "344" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 10c5625f-0d6c-4c18-a1f7-d592e8d061a0 + status: 200 OK + code: 200 + duration: 54.037378ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/cc1340ad-1de9-4085-9b2a-b604e77f3679 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f90b48be-2764-479e-a312-9b7916cbf2ed + status: 204 No Content + code: 204 + duration: 181.571628ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/cc1340ad-1de9-4085-9b2a-b604e77f3679 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 132 + body: "{\"message\":\"resource is not found\",\"resource\":\"application\",\"resource_id\":\"cc1340ad-1de9-4085-9b2a-b604e77f3679\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "132" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1c6283b8-d42f-44de-a2cc-465d4abe2a84 + status: 404 Not Found + code: 404 + duration: 65.262248ms diff --git a/internal/services/iam/testdata/application-no-update.cassette.yaml b/internal/services/iam/testdata/application-no-update.cassette.yaml index 130d93189..b6d36f257 100644 --- a/internal/services/iam/testdata/application-no-update.cassette.yaml +++ b/internal/services/iam/testdata/application-no-update.cassette.yaml @@ -1,444 +1,292 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 116 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_app_noupdate","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 321 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:03.315091Z","deletable":true,"description":"","editable":true,"id":"ca7f2f82-5f5c-4bb3-be78-afa22ffdf544","managed":false,"name":"tf_tests_app_noupdate","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:03.315091Z"}' - headers: - Content-Length: - - "321" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:03 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: - - 6882e406-d1df-43d6-aadf-fb6f3259978b - status: 200 OK - code: 200 - duration: 146.484708ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/ca7f2f82-5f5c-4bb3-be78-afa22ffdf544 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 321 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:03.315091Z","deletable":true,"description":"","editable":true,"id":"ca7f2f82-5f5c-4bb3-be78-afa22ffdf544","managed":false,"name":"tf_tests_app_noupdate","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:03.315091Z"}' - headers: - Content-Length: - - "321" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:03 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: - - 870146d7-866a-4fdf-bf1c-8bcc371f5f3a - status: 200 OK - code: 200 - duration: 110.301375ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/ca7f2f82-5f5c-4bb3-be78-afa22ffdf544 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 321 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:03.315091Z","deletable":true,"description":"","editable":true,"id":"ca7f2f82-5f5c-4bb3-be78-afa22ffdf544","managed":false,"name":"tf_tests_app_noupdate","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:03.315091Z"}' - headers: - Content-Length: - - "321" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:03 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: - - b984f1e0-7fab-488f-947f-e4516594323e - status: 200 OK - code: 200 - duration: 104.288625ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/ca7f2f82-5f5c-4bb3-be78-afa22ffdf544 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 321 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:03.315091Z","deletable":true,"description":"","editable":true,"id":"ca7f2f82-5f5c-4bb3-be78-afa22ffdf544","managed":false,"name":"tf_tests_app_noupdate","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:03.315091Z"}' - headers: - Content-Length: - - "321" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:05 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: - - 34172d06-8c8c-42ea-b3af-89f84c5fc6cb - status: 200 OK - code: 200 - duration: 638.857ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/ca7f2f82-5f5c-4bb3-be78-afa22ffdf544 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 321 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:03.315091Z","deletable":true,"description":"","editable":true,"id":"ca7f2f82-5f5c-4bb3-be78-afa22ffdf544","managed":false,"name":"tf_tests_app_noupdate","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:03.315091Z"}' - headers: - Content-Length: - - "321" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:06 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: - - fd4ce267-893e-4b1a-9283-f7f6c0e83d3b - status: 200 OK - code: 200 - duration: 177.618417ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/ca7f2f82-5f5c-4bb3-be78-afa22ffdf544 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 321 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:03.315091Z","deletable":true,"description":"","editable":true,"id":"ca7f2f82-5f5c-4bb3-be78-afa22ffdf544","managed":false,"name":"tf_tests_app_noupdate","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:03.315091Z"}' - headers: - Content-Length: - - "321" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 6d11f190-e98c-4d68-8091-913b2aab63a3 - status: 200 OK - code: 200 - duration: 101.634416ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/ca7f2f82-5f5c-4bb3-be78-afa22ffdf544 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 321 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:03.315091Z","deletable":true,"description":"","editable":true,"id":"ca7f2f82-5f5c-4bb3-be78-afa22ffdf544","managed":false,"name":"tf_tests_app_noupdate","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:03.315091Z"}' - headers: - Content-Length: - - "321" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 5ad442a0-e8cf-4f63-b9f7-cdc28e0fb3d9 - status: 200 OK - code: 200 - duration: 91.020916ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/ca7f2f82-5f5c-4bb3-be78-afa22ffdf544 - 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: - - Wed, 22 Jan 2025 15:33: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: - - 30f17ad6-2395-4ace-ba01-d97a0a2e3a5a - status: 204 No Content - code: 204 - duration: 88.177542ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/ca7f2f82-5f5c-4bb3-be78-afa22ffdf544 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 132 - uncompressed: false - body: '{"message":"resource is not found","resource":"application","resource_id":"ca7f2f82-5f5c-4bb3-be78-afa22ffdf544","type":"not_found"}' - headers: - Content-Length: - - "132" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - a45b2c83-a94f-47e7-aa80-647abee1cc1c - status: 404 Not Found - code: 404 - duration: 28.212625ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 116 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_app_noupdate\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 321 + body: "{\"id\":\"fb05c827-2535-48bf-9fa0-dbb5c4d1b374\", \"name\":\"tf_tests_app_noupdate\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.462874Z\", \"updated_at\":\"2025-11-17T17:10:30.462874Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "321" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0234050c-60ad-4f58-9b63-c4db129187a7 + status: 200 OK + code: 200 + duration: 193.133631ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/fb05c827-2535-48bf-9fa0-dbb5c4d1b374 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 321 + body: "{\"id\":\"fb05c827-2535-48bf-9fa0-dbb5c4d1b374\", \"name\":\"tf_tests_app_noupdate\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.462874Z\", \"updated_at\":\"2025-11-17T17:10:30.462874Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "321" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3dc83037-975b-4a25-91a0-8e349a90d8f1 + status: 200 OK + code: 200 + duration: 214.545036ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/fb05c827-2535-48bf-9fa0-dbb5c4d1b374 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 321 + body: "{\"id\":\"fb05c827-2535-48bf-9fa0-dbb5c4d1b374\", \"name\":\"tf_tests_app_noupdate\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.462874Z\", \"updated_at\":\"2025-11-17T17:10:30.462874Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "321" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5f3924cd-9c33-44fa-97b3-81f640544daa + status: 200 OK + code: 200 + duration: 186.447128ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/fb05c827-2535-48bf-9fa0-dbb5c4d1b374 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 321 + body: "{\"id\":\"fb05c827-2535-48bf-9fa0-dbb5c4d1b374\", \"name\":\"tf_tests_app_noupdate\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.462874Z\", \"updated_at\":\"2025-11-17T17:10:30.462874Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "321" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 204a8708-cca4-4ce9-a649-c117eee11aa6 + status: 200 OK + code: 200 + duration: 82.951071ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/fb05c827-2535-48bf-9fa0-dbb5c4d1b374 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 321 + body: "{\"id\":\"fb05c827-2535-48bf-9fa0-dbb5c4d1b374\", \"name\":\"tf_tests_app_noupdate\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.462874Z\", \"updated_at\":\"2025-11-17T17:10:30.462874Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "321" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2d4074fc-b063-4f1f-a215-ac14cfb8927f + status: 200 OK + code: 200 + duration: 81.141719ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/fb05c827-2535-48bf-9fa0-dbb5c4d1b374 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 321 + body: "{\"id\":\"fb05c827-2535-48bf-9fa0-dbb5c4d1b374\", \"name\":\"tf_tests_app_noupdate\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.462874Z\", \"updated_at\":\"2025-11-17T17:10:30.462874Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "321" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9e325785-4e42-4ea8-b1ca-6d692e030f2c + status: 200 OK + code: 200 + duration: 55.744437ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/fb05c827-2535-48bf-9fa0-dbb5c4d1b374 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 321 + body: "{\"id\":\"fb05c827-2535-48bf-9fa0-dbb5c4d1b374\", \"name\":\"tf_tests_app_noupdate\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.462874Z\", \"updated_at\":\"2025-11-17T17:10:30.462874Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "321" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 85cd6365-c620-49c4-85f3-f52b0272c410 + status: 200 OK + code: 200 + duration: 59.995979ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/fb05c827-2535-48bf-9fa0-dbb5c4d1b374 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - accc948c-50b2-4e43-8504-3245244594a0 + status: 204 No Content + code: 204 + duration: 169.31162ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/fb05c827-2535-48bf-9fa0-dbb5c4d1b374 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 132 + body: "{\"message\":\"resource is not found\",\"resource\":\"application\",\"resource_id\":\"fb05c827-2535-48bf-9fa0-dbb5c4d1b374\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "132" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ea2cc2c5-38dc-4270-95b8-73accf418c7e + status: 404 Not Found + code: 404 + duration: 66.246253ms diff --git a/internal/services/iam/testdata/data-source-account-ssh-key-basic.cassette.yaml b/internal/services/iam/testdata/data-source-account-ssh-key-basic.cassette.yaml index 66aa59a29..0a0a1136a 100644 --- a/internal/services/iam/testdata/data-source-account-ssh-key-basic.cassette.yaml +++ b/internal/services/iam/testdata/data-source-account-ssh-key-basic.cassette.yaml @@ -1,1130 +1,563 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 222 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"TestAccScalewayDataSourceAccountSSHKey_Basic","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ foobar@example.com","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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 501 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}' - headers: - Content-Length: - - "501" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - cf456aa8-aa9e-4c25-8af5-4111caee1356 - status: 200 OK - code: 200 - duration: 772.451417ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ca978ce2-ab60-48ef-b124-c2f587f4dee4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 501 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}' - headers: - Content-Length: - - "501" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - a2ab770c-16c0-4038-99b3-3e6e90f830fa - status: 200 OK - code: 200 - duration: 67.996709ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ca978ce2-ab60-48ef-b124-c2f587f4dee4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 501 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}' - headers: - Content-Length: - - "501" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:49 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: - - 5ad449a6-206a-4095-849d-1705cc8c44ec - status: 200 OK - code: 200 - duration: 68.285791ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ca978ce2-ab60-48ef-b124-c2f587f4dee4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 501 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}' - headers: - Content-Length: - - "501" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:50 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: - - bc16a906-c0a7-4425-9c82-5937f8d9bac6 - status: 200 OK - code: 200 - duration: 57.232542ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ca978ce2-ab60-48ef-b124-c2f587f4dee4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 501 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}' - headers: - Content-Length: - - "501" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:50 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: - - a8349b43-18a7-46f6-a667-38a69581b01d - status: 200 OK - code: 200 - duration: 64.241333ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys?name=TestAccScalewayDataSourceAccountSSHKey_Basic&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"ssh_keys":[{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}],"total_count":1}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:50 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: - - b5abb866-7e07-4980-bc40-8f28849e18be - status: 200 OK - code: 200 - duration: 80.282375ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ca978ce2-ab60-48ef-b124-c2f587f4dee4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 501 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}' - headers: - Content-Length: - - "501" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:50 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: - - 000edb8b-c147-4981-bce8-81bfdd47e2ea - status: 200 OK - code: 200 - duration: 63.40725ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ca978ce2-ab60-48ef-b124-c2f587f4dee4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 501 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}' - headers: - Content-Length: - - "501" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:51 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: - - 8f6dd0fa-ff21-41a2-af0b-9d4f2cd3dd08 - status: 200 OK - code: 200 - duration: 101.371083ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys?name=TestAccScalewayDataSourceAccountSSHKey_Basic&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"ssh_keys":[{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}],"total_count":1}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:51 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: - - 1974417e-a2f3-4c13-8bd7-401f79b78f0b - status: 200 OK - code: 200 - duration: 101.017708ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ca978ce2-ab60-48ef-b124-c2f587f4dee4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 501 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}' - headers: - Content-Length: - - "501" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:51 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: - - 669e89d4-4247-47f0-9390-b27b58f497bc - status: 200 OK - code: 200 - duration: 100.899458ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ca978ce2-ab60-48ef-b124-c2f587f4dee4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 501 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}' - headers: - Content-Length: - - "501" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - 9171d36d-5713-4669-a18c-f4aacf978058 - status: 200 OK - code: 200 - duration: 67.010667ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ca978ce2-ab60-48ef-b124-c2f587f4dee4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 501 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}' - headers: - Content-Length: - - "501" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - 33a7b26e-9e7a-497f-a877-5993b08d2139 - status: 200 OK - code: 200 - duration: 62.957958ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ca978ce2-ab60-48ef-b124-c2f587f4dee4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 501 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}' - headers: - Content-Length: - - "501" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - 7b44f23a-e4ed-4a6a-b495-b147b02bb52e - status: 200 OK - code: 200 - duration: 58.586083ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys?name=TestAccScalewayDataSourceAccountSSHKey_Basic&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"ssh_keys":[{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}],"total_count":1}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - 01c1d065-1ee5-4280-9373-13eaf42950e0 - status: 200 OK - code: 200 - duration: 82.542458ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ca978ce2-ab60-48ef-b124-c2f587f4dee4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 501 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}' - headers: - Content-Length: - - "501" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - 4d1bfe91-2de5-4407-ad43-af44e668f53b - status: 200 OK - code: 200 - duration: 73.879125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ca978ce2-ab60-48ef-b124-c2f587f4dee4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 501 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}' - headers: - Content-Length: - - "501" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - f67cc502-5533-4e0a-be5d-5a171a3c7760 - status: 200 OK - code: 200 - duration: 66.788459ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ca978ce2-ab60-48ef-b124-c2f587f4dee4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 501 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}' - headers: - Content-Length: - - "501" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - f538fbd9-3095-4721-b8d0-ae68fb5ff0f4 - status: 200 OK - code: 200 - duration: 64.355458ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys?name=TestAccScalewayDataSourceAccountSSHKey_Basic&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"ssh_keys":[{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}],"total_count":1}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - 1f3ab31a-fdb7-4f84-ae1a-13b54399e4d2 - status: 200 OK - code: 200 - duration: 79.938583ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ca978ce2-ab60-48ef-b124-c2f587f4dee4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 501 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}' - headers: - Content-Length: - - "501" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - 4ebda03c-1835-4450-be09-8e29157bc3b8 - status: 200 OK - code: 200 - duration: 60.700667ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ca978ce2-ab60-48ef-b124-c2f587f4dee4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 501 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}' - headers: - Content-Length: - - "501" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - 751bac67-9fac-4543-b28f-5a93a90f7e13 - status: 200 OK - code: 200 - duration: 61.882542ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys?name=TestAccScalewayDataSourceAccountSSHKey_Basic&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"ssh_keys":[{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}],"total_count":1}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - f6b8c5da-add3-4c16-9c98-ecd20fceedde - status: 200 OK - code: 200 - duration: 91.507416ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ca978ce2-ab60-48ef-b124-c2f587f4dee4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 501 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:47.679192Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"ca978ce2-ab60-48ef-b124-c2f587f4dee4","name":"TestAccScalewayDataSourceAccountSSHKey_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-01-22T15:32:47.679192Z"}' - headers: - Content-Length: - - "501" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - 45dbb61d-7968-442a-9991-566b7538e7bd - status: 200 OK - code: 200 - duration: 79.512ms - - id: 22 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ca978ce2-ab60-48ef-b124-c2f587f4dee4 - 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: - - Wed, 22 Jan 2025 15:32:55 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: - - 7e202269-10ea-42d2-9881-63a7300b1d27 - status: 204 No Content - code: 204 - duration: 70.405125ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 222 + host: api.scaleway.com + body: "{\"name\":\"TestAccScalewayDataSourceAccountSSHKey_Basic\",\"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ foobar@example.com\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"id\":\"4b516c19-eb39-49a2-932c-b9e91e12b84a\", \"name\":\"TestAccScalewayDataSourceAccountSSHKey_Basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:48.540622Z\", \"updated_at\":\"2025-11-17T17:10:48.540622Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3a5e3ba8-4e15-4c38-97a5-20d1266db095 + status: 200 OK + code: 200 + duration: 205.481411ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/4b516c19-eb39-49a2-932c-b9e91e12b84a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"id\":\"4b516c19-eb39-49a2-932c-b9e91e12b84a\", \"name\":\"TestAccScalewayDataSourceAccountSSHKey_Basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:48.540622Z\", \"updated_at\":\"2025-11-17T17:10:48.540622Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 871d3687-f3bb-4553-acfa-094a35dc6089 + status: 200 OK + code: 200 + duration: 90.193163ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/4b516c19-eb39-49a2-932c-b9e91e12b84a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"id\":\"4b516c19-eb39-49a2-932c-b9e91e12b84a\", \"name\":\"TestAccScalewayDataSourceAccountSSHKey_Basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:48.540622Z\", \"updated_at\":\"2025-11-17T17:10:48.540622Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 12355589-449f-4605-82b3-7343775643b6 + status: 200 OK + code: 200 + duration: 93.2325ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/4b516c19-eb39-49a2-932c-b9e91e12b84a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"id\":\"4b516c19-eb39-49a2-932c-b9e91e12b84a\", \"name\":\"TestAccScalewayDataSourceAccountSSHKey_Basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:48.540622Z\", \"updated_at\":\"2025-11-17T17:10:48.540622Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f0e13d7b-d586-4d60-91fa-df0326c09f2e + status: 200 OK + code: 200 + duration: 48.116975ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/4b516c19-eb39-49a2-932c-b9e91e12b84a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"id\":\"4b516c19-eb39-49a2-932c-b9e91e12b84a\", \"name\":\"TestAccScalewayDataSourceAccountSSHKey_Basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:48.540622Z\", \"updated_at\":\"2025-11-17T17:10:48.540622Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 245c832e-dd84-4b09-828c-ebd96d9e7949 + status: 200 OK + code: 200 + duration: 83.677157ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - TestAccScalewayDataSourceAccountSSHKey_Basic + order_by: + - created_at_asc + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys?name=TestAccScalewayDataSourceAccountSSHKey_Basic&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 533 + body: "{\"ssh_keys\":[{\"id\":\"4b516c19-eb39-49a2-932c-b9e91e12b84a\", \"name\":\"TestAccScalewayDataSourceAccountSSHKey_Basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:48.540622Z\", \"updated_at\":\"2025-11-17T17:10:48.540622Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}], \"total_count\":1}" + headers: + Content-Length: + - "533" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0796f7ee-6d0d-4b9e-9721-6652d814445f + status: 200 OK + code: 200 + duration: 82.497363ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/4b516c19-eb39-49a2-932c-b9e91e12b84a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"id\":\"4b516c19-eb39-49a2-932c-b9e91e12b84a\", \"name\":\"TestAccScalewayDataSourceAccountSSHKey_Basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:48.540622Z\", \"updated_at\":\"2025-11-17T17:10:48.540622Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2be038d2-ce4b-4dd6-85f5-9f27fc45078b + status: 200 OK + code: 200 + duration: 86.916834ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/4b516c19-eb39-49a2-932c-b9e91e12b84a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"id\":\"4b516c19-eb39-49a2-932c-b9e91e12b84a\", \"name\":\"TestAccScalewayDataSourceAccountSSHKey_Basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:48.540622Z\", \"updated_at\":\"2025-11-17T17:10:48.540622Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1465d965-0477-4982-a1ea-005f0dfb0a5a + status: 200 OK + code: 200 + duration: 37.050658ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/4b516c19-eb39-49a2-932c-b9e91e12b84a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"id\":\"4b516c19-eb39-49a2-932c-b9e91e12b84a\", \"name\":\"TestAccScalewayDataSourceAccountSSHKey_Basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:48.540622Z\", \"updated_at\":\"2025-11-17T17:10:48.540622Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 601e5c3b-7312-4e74-931c-d1b10bfaf237 + status: 200 OK + code: 200 + duration: 100.785788ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/4b516c19-eb39-49a2-932c-b9e91e12b84a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"id\":\"4b516c19-eb39-49a2-932c-b9e91e12b84a\", \"name\":\"TestAccScalewayDataSourceAccountSSHKey_Basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:48.540622Z\", \"updated_at\":\"2025-11-17T17:10:48.540622Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7f06c1d5-64ac-45bf-8a92-8419596636a3 + status: 200 OK + code: 200 + duration: 65.661066ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - TestAccScalewayDataSourceAccountSSHKey_Basic + order_by: + - created_at_asc + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys?name=TestAccScalewayDataSourceAccountSSHKey_Basic&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 533 + body: "{\"ssh_keys\":[{\"id\":\"4b516c19-eb39-49a2-932c-b9e91e12b84a\", \"name\":\"TestAccScalewayDataSourceAccountSSHKey_Basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:48.540622Z\", \"updated_at\":\"2025-11-17T17:10:48.540622Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}], \"total_count\":1}" + headers: + Content-Length: + - "533" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - cd36949d-cfb1-4eed-9f6b-2567ce7dbfe9 + status: 200 OK + code: 200 + duration: 66.415025ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/4b516c19-eb39-49a2-932c-b9e91e12b84a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"id\":\"4b516c19-eb39-49a2-932c-b9e91e12b84a\", \"name\":\"TestAccScalewayDataSourceAccountSSHKey_Basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:48.540622Z\", \"updated_at\":\"2025-11-17T17:10:48.540622Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 41eea727-32ec-45c0-96ac-4afaa1167c67 + status: 200 OK + code: 200 + duration: 46.169097ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/4b516c19-eb39-49a2-932c-b9e91e12b84a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"id\":\"4b516c19-eb39-49a2-932c-b9e91e12b84a\", \"name\":\"TestAccScalewayDataSourceAccountSSHKey_Basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:48.540622Z\", \"updated_at\":\"2025-11-17T17:10:48.540622Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ebf48d7a-89d0-4799-80f0-7769302ce8b9 + status: 200 OK + code: 200 + duration: 63.462795ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - TestAccScalewayDataSourceAccountSSHKey_Basic + order_by: + - created_at_asc + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys?name=TestAccScalewayDataSourceAccountSSHKey_Basic&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 533 + body: "{\"ssh_keys\":[{\"id\":\"4b516c19-eb39-49a2-932c-b9e91e12b84a\", \"name\":\"TestAccScalewayDataSourceAccountSSHKey_Basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:48.540622Z\", \"updated_at\":\"2025-11-17T17:10:48.540622Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}], \"total_count\":1}" + headers: + Content-Length: + - "533" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - dcb001f9-0b2b-4060-99fd-ea4bfb03d1f0 + status: 200 OK + code: 200 + duration: 79.924506ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/4b516c19-eb39-49a2-932c-b9e91e12b84a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"id\":\"4b516c19-eb39-49a2-932c-b9e91e12b84a\", \"name\":\"TestAccScalewayDataSourceAccountSSHKey_Basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:48.540622Z\", \"updated_at\":\"2025-11-17T17:10:48.540622Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - fd27833f-6a7d-4365-a12e-c7f6699af8f6 + status: 200 OK + code: 200 + duration: 81.337344ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/4b516c19-eb39-49a2-932c-b9e91e12b84a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"id\":\"4b516c19-eb39-49a2-932c-b9e91e12b84a\", \"name\":\"TestAccScalewayDataSourceAccountSSHKey_Basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:48.540622Z\", \"updated_at\":\"2025-11-17T17:10:48.540622Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d91e828f-a47c-489e-ba3e-0f15db5329c1 + status: 200 OK + code: 200 + duration: 96.999636ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/4b516c19-eb39-49a2-932c-b9e91e12b84a + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 47abea47-0647-4916-b372-6f290b35db90 + status: 204 No Content + code: 204 + duration: 58.428338ms diff --git a/internal/services/iam/testdata/data-source-api-key-basic.cassette.yaml b/internal/services/iam/testdata/data-source-api-key-basic.cassette.yaml index a2bb3694b..b3a286988 100644 --- a/internal/services/iam/testdata/data-source-api-key-basic.cassette.yaml +++ b/internal/services/iam/testdata/data-source-api-key-basic.cassette.yaml @@ -1,689 +1,453 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 117 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_app_key_basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 312 - uncompressed: false - body: '{"created_at":"2025-09-05T13:58:38.949860Z","deletable":true,"description":"","editable":true,"id":"339e9f81-3113-40e1-93f3-d48964c7fdba","managed":false,"name":"tf_tests_app_key_basic","nb_api_keys":0,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"updated_at":"2025-09-05T13:58:38.949860Z"}' - headers: - Content-Length: - - "312" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:58:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a4499dd3-55e5-4a5f-95d2-5825bc5cc7c7 - status: 200 OK - code: 200 - duration: 464.545166ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/339e9f81-3113-40e1-93f3-d48964c7fdba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 312 - uncompressed: false - body: '{"created_at":"2025-09-05T13:58:38.949860Z","deletable":true,"description":"","editable":true,"id":"339e9f81-3113-40e1-93f3-d48964c7fdba","managed":false,"name":"tf_tests_app_key_basic","nb_api_keys":0,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"updated_at":"2025-09-05T13:58:38.949860Z"}' - headers: - Content-Length: - - "312" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:58:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5d5e8e0a-2505-4085-8507-27ba916dbd77 - status: 200 OK - code: 200 - duration: 86.992792ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 99 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"339e9f81-3113-40e1-93f3-d48964c7fdba","description":"tf_tests_with_application"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 429 - uncompressed: false - body: '{"access_key":"SCW77CRY47V1XP0S21HJ","application_id":"339e9f81-3113-40e1-93f3-d48964c7fdba","created_at":"2025-09-05T13:58:39.164637Z","creation_ip":"41.96.92.239","default_project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","deletable":true,"description":"tf_tests_with_application","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-09-05T13:58:39.164637Z"}' - headers: - Content-Length: - - "429" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:58:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6fd1477b-a699-452c-b9c8-00c85969c9c0 - status: 200 OK - code: 200 - duration: 118.157458ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW77CRY47V1XP0S21HJ - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"access_key":"SCW77CRY47V1XP0S21HJ","application_id":"339e9f81-3113-40e1-93f3-d48964c7fdba","created_at":"2025-09-05T13:58:39.164637Z","creation_ip":"41.96.92.239","default_project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","deletable":true,"description":"tf_tests_with_application","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-09-05T13:58:39.164637Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:58:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ea509f90-ac7b-47f4-b9ba-7a300dd63e20 - status: 200 OK - code: 200 - duration: 87.764958ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW77CRY47V1XP0S21HJ - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"access_key":"SCW77CRY47V1XP0S21HJ","application_id":"339e9f81-3113-40e1-93f3-d48964c7fdba","created_at":"2025-09-05T13:58:39.164637Z","creation_ip":"41.96.92.239","default_project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","deletable":true,"description":"tf_tests_with_application","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-09-05T13:58:39.164637Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:58:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 35f2e30c-117f-4c86-a15a-1814b51d3594 - status: 200 OK - code: 200 - duration: 80.574ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW77CRY47V1XP0S21HJ - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"access_key":"SCW77CRY47V1XP0S21HJ","application_id":"339e9f81-3113-40e1-93f3-d48964c7fdba","created_at":"2025-09-05T13:58:39.164637Z","creation_ip":"41.96.92.239","default_project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","deletable":true,"description":"tf_tests_with_application","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-09-05T13:58:39.164637Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:58:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 22865836-bacf-42e9-b145-af3e9706894c - status: 200 OK - code: 200 - duration: 80.896667ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW77CRY47V1XP0S21HJ - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"access_key":"SCW77CRY47V1XP0S21HJ","application_id":"339e9f81-3113-40e1-93f3-d48964c7fdba","created_at":"2025-09-05T13:58:39.164637Z","creation_ip":"41.96.92.239","default_project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","deletable":true,"description":"tf_tests_with_application","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-09-05T13:58:39.164637Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:58:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ba90b780-b91c-4836-812b-e89878a72435 - status: 200 OK - code: 200 - duration: 81.543833ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/339e9f81-3113-40e1-93f3-d48964c7fdba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 312 - uncompressed: false - body: '{"created_at":"2025-09-05T13:58:38.949860Z","deletable":true,"description":"","editable":true,"id":"339e9f81-3113-40e1-93f3-d48964c7fdba","managed":false,"name":"tf_tests_app_key_basic","nb_api_keys":1,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"updated_at":"2025-09-05T13:58:38.949860Z"}' - headers: - Content-Length: - - "312" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:58:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a4c8824c-6763-43e2-9222-8655ce5dc557 - status: 200 OK - code: 200 - duration: 80.323208ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW77CRY47V1XP0S21HJ - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"access_key":"SCW77CRY47V1XP0S21HJ","application_id":"339e9f81-3113-40e1-93f3-d48964c7fdba","created_at":"2025-09-05T13:58:39.164637Z","creation_ip":"41.96.92.239","default_project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","deletable":true,"description":"tf_tests_with_application","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-09-05T13:58:39.164637Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:58:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2588c0cf-bb8b-4ec3-a8dc-a575ff660db3 - status: 200 OK - code: 200 - duration: 79.189166ms - - id: 9 - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW77CRY47V1XP0S21HJ - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"access_key":"SCW77CRY47V1XP0S21HJ","application_id":"339e9f81-3113-40e1-93f3-d48964c7fdba","created_at":"2025-09-05T13:58:39.164637Z","creation_ip":"41.96.92.239","default_project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","deletable":true,"description":"tf_tests_with_application","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-09-05T13:58:39.164637Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:58:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4608a60a-ecb6-4a38-bc12-8717057d67cf - status: 200 OK - code: 200 - duration: 84.46225ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW77CRY47V1XP0S21HJ - 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, 05 Sep 2025 13:58:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 89d8582f-72c1-457d-b300-a8f9bf16e80c - status: 204 No Content - code: 204 - duration: 103.255083ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/339e9f81-3113-40e1-93f3-d48964c7fdba - 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, 05 Sep 2025 13:58:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f3a44140-7bed-41a0-9622-bfbb3fb35e61 - status: 204 No Content - code: 204 - duration: 97.530167ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW77CRY47V1XP0S21HJ - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 115 - uncompressed: false - body: '{"message":"resource is not found","resource":"access_key","resource_id":"SCW77CRY47V1XP0S21HJ","type":"not_found"}' - headers: - Content-Length: - - "115" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:58:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - deb9320d-fb49-46d4-9c0a-5ecd4771c0d8 - status: 404 Not Found - code: 404 - duration: 57.554125ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW77CRY47V1XP0S21HJ - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 115 - uncompressed: false - body: '{"message":"resource is not found","resource":"access_key","resource_id":"SCW77CRY47V1XP0S21HJ","type":"not_found"}' - headers: - Content-Length: - - "115" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:58:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5f09d5bd-0a0d-4db8-b020-c4053de0e92a - status: 404 Not Found - code: 404 - duration: 59.396708ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 117 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_app_key_basic\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"20891ce8-d2de-40c6-90b7-4247fd2a30cf\", \"name\":\"tf_tests_app_key_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.352766Z\", \"updated_at\":\"2025-11-17T17:10:30.352766Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 49b0996a-9c8e-4c1a-b23b-91c9d0838b9d + status: 200 OK + code: 200 + duration: 116.410408ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/20891ce8-d2de-40c6-90b7-4247fd2a30cf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"20891ce8-d2de-40c6-90b7-4247fd2a30cf\", \"name\":\"tf_tests_app_key_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.352766Z\", \"updated_at\":\"2025-11-17T17:10:30.352766Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5f78e42b-0e33-44ef-b301-c2e5408d3a3e + status: 200 OK + code: 200 + duration: 183.309436ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 99 + host: api.scaleway.com + body: "{\"application_id\":\"20891ce8-d2de-40c6-90b7-4247fd2a30cf\",\"description\":\"tf_tests_with_application\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"access_key\":\"SCW7722HBHY8FWFX1A56\", \"secret_key\":\"11111111-1111-1111-1111-111111111111\", \"description\":\"tf_tests_with_application\", \"created_at\":\"2025-11-17T17:10:30.794433Z\", \"updated_at\":\"2025-11-17T17:10:30.794433Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"20891ce8-d2de-40c6-90b7-4247fd2a30cf\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e1c29004-f608-4486-9bd6-52cf495bc0ff + status: 200 OK + code: 200 + duration: 252.965068ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: "{\"access_key\":\"SCW7722HBHY8FWFX1A56\", \"secret_key\":null, \"description\":\"tf_tests_with_application\", \"created_at\":\"2025-11-17T17:10:30.794433Z\", \"updated_at\":\"2025-11-17T17:10:30.794433Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"20891ce8-d2de-40c6-90b7-4247fd2a30cf\"}" + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 16b8e171-5b2d-4cf2-b2d7-75df154e6c60 + status: 200 OK + code: 200 + duration: 204.885823ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: "{\"access_key\":\"SCW7722HBHY8FWFX1A56\", \"secret_key\":null, \"description\":\"tf_tests_with_application\", \"created_at\":\"2025-11-17T17:10:30.794433Z\", \"updated_at\":\"2025-11-17T17:10:30.794433Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"20891ce8-d2de-40c6-90b7-4247fd2a30cf\"}" + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3d736f41-9827-4b2d-9488-83f6d46f28b6 + status: 200 OK + code: 200 + duration: 152.235419ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: "{\"access_key\":\"SCW7722HBHY8FWFX1A56\", \"secret_key\":null, \"description\":\"tf_tests_with_application\", \"created_at\":\"2025-11-17T17:10:30.794433Z\", \"updated_at\":\"2025-11-17T17:10:30.794433Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"20891ce8-d2de-40c6-90b7-4247fd2a30cf\"}" + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1325fee1-3835-4f3d-892d-bb6e646f0fda + status: 200 OK + code: 200 + duration: 64.283297ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: "{\"access_key\":\"SCW7722HBHY8FWFX1A56\", \"secret_key\":null, \"description\":\"tf_tests_with_application\", \"created_at\":\"2025-11-17T17:10:30.794433Z\", \"updated_at\":\"2025-11-17T17:10:30.794433Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"20891ce8-d2de-40c6-90b7-4247fd2a30cf\"}" + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5bc72dec-51ad-48c0-a5dc-c6e09ce53c19 + status: 200 OK + code: 200 + duration: 203.804555ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/20891ce8-d2de-40c6-90b7-4247fd2a30cf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"20891ce8-d2de-40c6-90b7-4247fd2a30cf\", \"name\":\"tf_tests_app_key_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.352766Z\", \"updated_at\":\"2025-11-17T17:10:30.352766Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":1, \"tags\":[]}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - bfb88121-17c7-4df9-bf3b-8e35557b228f + status: 200 OK + code: 200 + duration: 46.837976ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: "{\"access_key\":\"SCW7722HBHY8FWFX1A56\", \"secret_key\":null, \"description\":\"tf_tests_with_application\", \"created_at\":\"2025-11-17T17:10:30.794433Z\", \"updated_at\":\"2025-11-17T17:10:30.794433Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"20891ce8-d2de-40c6-90b7-4247fd2a30cf\"}" + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b3760b84-cbcf-41c6-95f5-803216e66549 + status: 200 OK + code: 200 + duration: 91.171659ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: "{\"access_key\":\"SCW7722HBHY8FWFX1A56\", \"secret_key\":null, \"description\":\"tf_tests_with_application\", \"created_at\":\"2025-11-17T17:10:30.794433Z\", \"updated_at\":\"2025-11-17T17:10:30.794433Z\", \"expires_at\":null, \"default_project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"20891ce8-d2de-40c6-90b7-4247fd2a30cf\"}" + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0b92f3ba-b9da-4df6-8e7c-a6383fa8e730 + status: 200 OK + code: 200 + duration: 233.628804ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c977b83f-c8a3-40bb-82a3-4a636f7c61d6 + status: 204 No Content + code: 204 + duration: 211.796789ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/20891ce8-d2de-40c6-90b7-4247fd2a30cf + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9f91a7ee-4245-42f8-8876-32858da809ae + status: 204 No Content + code: 204 + duration: 177.764317ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 115 + body: "{\"message\":\"resource is not found\",\"resource\":\"access_key\",\"resource_id\":\"SCW7722HBHY8FWFX1A56\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "115" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 13502e39-be0b-4dcd-9193-3f4be7cb6989 + status: 404 Not Found + code: 404 + duration: 38.952396ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 115 + body: "{\"message\":\"resource is not found\",\"resource\":\"access_key\",\"resource_id\":\"SCW7722HBHY8FWFX1A56\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "115" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 619b35d4-a650-4ac5-905b-1c24096025ba + status: 404 Not Found + code: 404 + duration: 75.752212ms diff --git a/internal/services/iam/testdata/data-source-application-basic.cassette.yaml b/internal/services/iam/testdata/data-source-application-basic.cassette.yaml index 666732230..4761e4d8e 100644 --- a/internal/services/iam/testdata/data-source-application-basic.cassette.yaml +++ b/internal/services/iam/testdata/data-source-application-basic.cassette.yaml @@ -1,1720 +1,1169 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 121 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_data_source_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 316 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:50.091929Z"}' - headers: - Content-Length: - - "316" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 633d6575-7d62-44df-96e8-307bc7ce011b - status: 200 OK - code: 200 - duration: 561.033792ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 316 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:50.091929Z"}' - headers: - Content-Length: - - "316" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d3ed017e-83a3-405a-80f7-4ae55b76a282 - status: 200 OK - code: 200 - duration: 232.67025ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 316 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:50.091929Z"}' - headers: - Content-Length: - - "316" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7ca27d88-4532-4981-bce8-501588514bac - status: 200 OK - code: 200 - duration: 248.320625ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications?name=tf_tests_data_source_basic&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: 351 - uncompressed: false - body: '{"applications":[{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:50.091929Z"}],"total_count":1}' - headers: - Content-Length: - - "351" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6a0e98c9-bd19-4db6-a3db-244ae87c9b17 - status: 200 OK - code: 200 - duration: 196.0675ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 316 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:50.091929Z"}' - headers: - Content-Length: - - "316" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f4ee7aa9-3185-4e43-b0f3-37e0b33bac5e - status: 200 OK - code: 200 - duration: 211.042209ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 316 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:50.091929Z"}' - headers: - Content-Length: - - "316" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 59ab7a79-d758-4daa-80e3-8d56573ac947 - status: 200 OK - code: 200 - duration: 222.762ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 316 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:50.091929Z"}' - headers: - Content-Length: - - "316" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 85942f7f-4ab9-4eea-82c1-eb4f183fb0bf - status: 200 OK - code: 200 - duration: 251.13525ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 316 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:50.091929Z"}' - headers: - Content-Length: - - "316" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a7838a30-1f45-4b2e-9d8a-180e9bf8f36b - status: 200 OK - code: 200 - duration: 245.23425ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 316 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:50.091929Z"}' - headers: - Content-Length: - - "316" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fbb4c156-a994-43fe-8452-d1187a05150d - status: 200 OK - code: 200 - duration: 198.735333ms - - id: 9 - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications?name=tf_tests_data_source_basic&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: 351 - uncompressed: false - body: '{"applications":[{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:50.091929Z"}],"total_count":1}' - headers: - Content-Length: - - "351" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5a211117-2b26-495f-9d37-952b14bfa64c - status: 200 OK - code: 200 - duration: 285.436958ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 316 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:50.091929Z"}' - headers: - Content-Length: - - "316" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6e433218-72e8-47e9-8b8f-8fe8ae4bb193 - status: 200 OK - code: 200 - duration: 230.386084ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 316 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:50.091929Z"}' - headers: - Content-Length: - - "316" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3e6aa52e-ca2b-464f-be71-9e1e1191ddb1 - status: 200 OK - code: 200 - duration: 206.153292ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications?name=tf_tests_data_source_basic&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: 351 - uncompressed: false - body: '{"applications":[{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:50.091929Z"}],"total_count":1}' - headers: - Content-Length: - - "351" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6940845c-a1e6-44e2-848b-271ec74f4341 - status: 200 OK - code: 200 - duration: 212.219125ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 316 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:50.091929Z"}' - headers: - Content-Length: - - "316" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3ec88a8c-c92f-4f7a-bce3-47acc9dda5f4 - status: 200 OK - code: 200 - duration: 203.444125ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 316 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:50.091929Z"}' - headers: - Content-Length: - - "316" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1f4f805c-3f9c-48ef-b0a6-3e79d1782eec - status: 200 OK - code: 200 - duration: 236.425959ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 316 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:50.091929Z"}' - headers: - Content-Length: - - "316" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - add43edb-42b1-4108-b7b9-27032f023555 - status: 200 OK - code: 200 - duration: 231.061375ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 100 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_data_source_basic_renamed","description":"tf_tests_data_source_basic_description"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 362 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"tf_tests_data_source_basic_description","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic_renamed","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:53.656028Z"}' - headers: - Content-Length: - - "362" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 07039a38-34f6-4174-b557-0ab3508ef98a - status: 200 OK - code: 200 - duration: 232.809334ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 362 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"tf_tests_data_source_basic_description","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic_renamed","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:53.656028Z"}' - headers: - Content-Length: - - "362" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8926e6e5-741b-4eee-86fa-db6c739c95c6 - status: 200 OK - code: 200 - duration: 282.827792ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 362 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"tf_tests_data_source_basic_description","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic_renamed","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:53.656028Z"}' - headers: - Content-Length: - - "362" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5bfcade2-3af8-4e74-adbf-bbf75451d773 - status: 200 OK - code: 200 - duration: 243.144417ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 362 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"tf_tests_data_source_basic_description","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic_renamed","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:53.656028Z"}' - headers: - Content-Length: - - "362" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fd08e57b-160d-4ee5-808e-85b6a724115c - status: 200 OK - code: 200 - duration: 234.455ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications?name=tf_tests_data_source_basic_renamed&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: 397 - uncompressed: false - body: '{"applications":[{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"tf_tests_data_source_basic_description","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic_renamed","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:53.656028Z"}],"total_count":1}' - headers: - Content-Length: - - "397" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cc277714-255c-417b-96aa-6d3a819cf4ba - status: 200 OK - code: 200 - duration: 249.972959ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 362 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"tf_tests_data_source_basic_description","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic_renamed","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:53.656028Z"}' - headers: - Content-Length: - - "362" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 554b1f49-a0ff-407a-9004-dbcd547c4566 - status: 200 OK - code: 200 - duration: 245.388042ms - - id: 22 - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 362 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"tf_tests_data_source_basic_description","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic_renamed","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:53.656028Z"}' - headers: - Content-Length: - - "362" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8e72b0cb-903f-4cef-8567-6f93d1786b5d - status: 200 OK - code: 200 - duration: 282.872583ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 362 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"tf_tests_data_source_basic_description","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic_renamed","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:53.656028Z"}' - headers: - Content-Length: - - "362" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c4d5e2e8-0f46-40c6-b51a-30d119be136a - status: 200 OK - code: 200 - duration: 260.113459ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 362 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"tf_tests_data_source_basic_description","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic_renamed","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:53.656028Z"}' - headers: - Content-Length: - - "362" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 576f2db6-a5ae-47f9-9cd9-3cba97109ad4 - status: 200 OK - code: 200 - duration: 205.214292ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications?name=tf_tests_data_source_basic_renamed&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: 397 - uncompressed: false - body: '{"applications":[{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"tf_tests_data_source_basic_description","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic_renamed","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:53.656028Z"}],"total_count":1}' - headers: - Content-Length: - - "397" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fe657181-1fb3-4a14-bc3d-445bf7f6c0e9 - status: 200 OK - code: 200 - duration: 227.199292ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 362 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"tf_tests_data_source_basic_description","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic_renamed","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:53.656028Z"}' - headers: - Content-Length: - - "362" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4348c887-ca44-4fed-9eec-d980f2946b3f - status: 200 OK - code: 200 - duration: 273.146333ms - - id: 27 - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications?name=tf_tests_data_source_basic_renamed&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: 397 - uncompressed: false - body: '{"applications":[{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"tf_tests_data_source_basic_description","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic_renamed","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:53.656028Z"}],"total_count":1}' - headers: - Content-Length: - - "397" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8ac49baf-5b88-46df-a93e-1cf8de34e3be - status: 200 OK - code: 200 - duration: 227.618667ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 362 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"tf_tests_data_source_basic_description","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic_renamed","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:53.656028Z"}' - headers: - Content-Length: - - "362" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5ffadc86-aa36-4d94-9164-e1f8d292a05f - status: 200 OK - code: 200 - duration: 269.000958ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 362 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"tf_tests_data_source_basic_description","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic_renamed","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:53.656028Z"}' - headers: - Content-Length: - - "362" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d820c83b-d3ee-43a7-9ba2-7420aa71311a - status: 200 OK - code: 200 - duration: 225.210292ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 362 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:50.091929Z","deletable":true,"description":"tf_tests_data_source_basic_description","editable":true,"id":"b2328a54-0dcf-48ed-b63e-98980f27c171","managed":false,"name":"tf_tests_data_source_basic_renamed","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:53.656028Z"}' - headers: - Content-Length: - - "362" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dc333396-ddef-4f44-a03d-89a5e6217a57 - status: 200 OK - code: 200 - duration: 231.347ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - 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, 05 Sep 2025 14:01:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d7b32120-1572-42db-b4b9-28951c3d334b - status: 204 No Content - code: 204 - duration: 225.161208ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 132 - uncompressed: false - body: '{"message":"resource is not found","resource":"application","resource_id":"b2328a54-0dcf-48ed-b63e-98980f27c171","type":"not_found"}' - headers: - Content-Length: - - "132" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1ec46e69-a1b1-4300-a1c9-fc4cb1de0596 - status: 404 Not Found - code: 404 - duration: 56.448375ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 132 - uncompressed: false - body: '{"message":"resource is not found","resource":"application","resource_id":"b2328a54-0dcf-48ed-b63e-98980f27c171","type":"not_found"}' - headers: - Content-Length: - - "132" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 619b9827-7360-41b9-8964-528208bd3843 - status: 404 Not Found - code: 404 - duration: 69.694916ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/b2328a54-0dcf-48ed-b63e-98980f27c171 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 132 - uncompressed: false - body: '{"message":"resource is not found","resource":"application","resource_id":"b2328a54-0dcf-48ed-b63e-98980f27c171","type":"not_found"}' - headers: - Content-Length: - - "132" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 07c73165-32e5-40c2-9423-8ad74af8ceb3 - status: 404 Not Found - code: 404 - duration: 53.8695ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 121 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_data_source_basic\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:30.443268Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f06ae94c-773d-4e44-93a1-2807c2c9da7b + status: 200 OK + code: 200 + duration: 202.45498ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:30.443268Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 393ef6b0-882e-4ebe-b8ea-7ca862c2bfb4 + status: 200 OK + code: 200 + duration: 162.421781ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:30.443268Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 30b9e755-afd1-4aa5-817c-51b4151220e2 + status: 200 OK + code: 200 + duration: 63.802909ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf_tests_data_source_basic + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications?name=tf_tests_data_source_basic&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 + content_length: 362 + body: "{\"applications\":[{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:30.443268Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}], \"total_count\":1}" + headers: + Content-Length: + - "362" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d9652962-0241-48f5-ac0d-c32495c2a4d1 + status: 200 OK + code: 200 + duration: 102.548692ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:30.443268Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e1997065-ab80-4c08-862d-17520382deb3 + status: 200 OK + code: 200 + duration: 175.475381ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:30.443268Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - eb508818-811b-4b1a-ac04-60ac15c960bf + status: 200 OK + code: 200 + duration: 114.11942ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:30.443268Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c8ec2c1f-c336-4399-a96b-56afb8e037df + status: 200 OK + code: 200 + duration: 155.231263ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:30.443268Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a08db55f-d826-44a6-88b9-af2a07152119 + status: 200 OK + code: 200 + duration: 73.659259ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:30.443268Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d37555ef-a519-4ae6-8ee4-b8d3ec58239c + status: 200 OK + code: 200 + duration: 47.721551ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf_tests_data_source_basic + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications?name=tf_tests_data_source_basic&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 + content_length: 362 + body: "{\"applications\":[{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:30.443268Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}], \"total_count\":1}" + headers: + Content-Length: + - "362" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 637f7870-7772-41b8-8f4b-143a252ce05f + status: 200 OK + code: 200 + duration: 92.575058ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:30.443268Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 396e0438-0dc4-4bcd-b64d-8adbdf35efdd + status: 200 OK + code: 200 + duration: 36.872676ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:30.443268Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6749d49a-c2c8-473f-80d1-9f9dd19a76a3 + status: 200 OK + code: 200 + duration: 49.8386ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf_tests_data_source_basic + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications?name=tf_tests_data_source_basic&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 + content_length: 362 + body: "{\"applications\":[{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:30.443268Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}], \"total_count\":1}" + headers: + Content-Length: + - "362" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0618a2bd-ab26-4f09-b106-a0bcd1229a62 + status: 200 OK + code: 200 + duration: 89.467858ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:30.443268Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 08a5a766-759b-451f-bc3f-246cb22e8ec4 + status: 200 OK + code: 200 + duration: 73.502289ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:30.443268Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f179e43e-680b-40ae-b94a-6a37b7826d15 + status: 200 OK + code: 200 + duration: 124.7986ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:30.443268Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 54fa13bb-d8cf-4a50-928a-e62bb17a9edd + status: 200 OK + code: 200 + duration: 53.683423ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 100 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_data_source_basic_renamed\",\"description\":\"tf_tests_data_source_basic_description\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 372 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic_renamed\", \"description\":\"tf_tests_data_source_basic_description\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:34.518311Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "372" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6bae8bf8-cd88-4637-af7d-8a0cc08889ed + status: 200 OK + code: 200 + duration: 111.422196ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 372 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic_renamed\", \"description\":\"tf_tests_data_source_basic_description\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:34.518311Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "372" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 67537b52-889d-4854-99fb-7831f9aba10a + status: 200 OK + code: 200 + duration: 85.055841ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 372 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic_renamed\", \"description\":\"tf_tests_data_source_basic_description\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:34.518311Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "372" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c4d49f7a-9486-4a5a-aa3b-e65e94867c0d + status: 200 OK + code: 200 + duration: 58.972201ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf_tests_data_source_basic_renamed + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications?name=tf_tests_data_source_basic_renamed&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 + content_length: 408 + body: "{\"applications\":[{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic_renamed\", \"description\":\"tf_tests_data_source_basic_description\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:34.518311Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}], \"total_count\":1}" + headers: + Content-Length: + - "408" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ca132eb3-cec9-47d5-8d26-4123dfa91efc + status: 200 OK + code: 200 + duration: 74.52382ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 372 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic_renamed\", \"description\":\"tf_tests_data_source_basic_description\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:34.518311Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "372" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d8f69258-02d0-44b0-8fb9-3f7f3b45cb53 + status: 200 OK + code: 200 + duration: 77.011255ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 372 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic_renamed\", \"description\":\"tf_tests_data_source_basic_description\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:34.518311Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "372" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 28b4dad5-134d-48a6-beab-33000ea70684 + status: 200 OK + code: 200 + duration: 70.709728ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 372 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic_renamed\", \"description\":\"tf_tests_data_source_basic_description\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:34.518311Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "372" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6cdf2f47-6462-44bf-8e09-b4ed574877fb + status: 200 OK + code: 200 + duration: 173.710864ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 372 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic_renamed\", \"description\":\"tf_tests_data_source_basic_description\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:34.518311Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "372" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d02653fc-e241-4dca-b62e-9bbdd8318b81 + status: 200 OK + code: 200 + duration: 48.788544ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 372 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic_renamed\", \"description\":\"tf_tests_data_source_basic_description\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:34.518311Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "372" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 481b81b9-418a-461f-aee4-8cef66b22f3a + status: 200 OK + code: 200 + duration: 48.188832ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf_tests_data_source_basic_renamed + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications?name=tf_tests_data_source_basic_renamed&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 + content_length: 408 + body: "{\"applications\":[{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic_renamed\", \"description\":\"tf_tests_data_source_basic_description\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:34.518311Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}], \"total_count\":1}" + headers: + Content-Length: + - "408" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6a47a8ab-2143-41ef-abf7-39de6f292f22 + status: 200 OK + code: 200 + duration: 90.872779ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 372 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic_renamed\", \"description\":\"tf_tests_data_source_basic_description\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:34.518311Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "372" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - bf1ee13e-ae18-44ad-bace-df393811485b + status: 200 OK + code: 200 + duration: 122.806781ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 372 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic_renamed\", \"description\":\"tf_tests_data_source_basic_description\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:34.518311Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "372" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b1510660-13ac-4559-8ff4-e8025b49d51d + status: 200 OK + code: 200 + duration: 49.241175ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf_tests_data_source_basic_renamed + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications?name=tf_tests_data_source_basic_renamed&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 + content_length: 408 + body: "{\"applications\":[{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic_renamed\", \"description\":\"tf_tests_data_source_basic_description\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:34.518311Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}], \"total_count\":1}" + headers: + Content-Length: + - "408" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0c644302-00b7-405e-985f-5206b11d4b47 + status: 200 OK + code: 200 + duration: 56.379006ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 372 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic_renamed\", \"description\":\"tf_tests_data_source_basic_description\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:34.518311Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "372" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ad479c9d-d973-48fa-951c-f39c21e1b8e8 + status: 200 OK + code: 200 + duration: 71.899492ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 372 + body: "{\"id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\", \"name\":\"tf_tests_data_source_basic_renamed\", \"description\":\"tf_tests_data_source_basic_description\", \"created_at\":\"2025-11-17T17:10:30.443268Z\", \"updated_at\":\"2025-11-17T17:10:34.518311Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "372" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a24d84fa-5c01-4eda-9bb6-754c51a730b0 + status: 200 OK + code: 200 + duration: 81.932937ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 77011b87-bdc9-4e98-819f-c83bec60f526 + status: 204 No Content + code: 204 + duration: 250.945703ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 132 + body: "{\"message\":\"resource is not found\",\"resource\":\"application\",\"resource_id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "132" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 92602999-6857-4718-836a-970e02f6cc75 + status: 404 Not Found + code: 404 + duration: 48.075923ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 132 + body: "{\"message\":\"resource is not found\",\"resource\":\"application\",\"resource_id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "132" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - cfd38b13-8048-4e80-a5f3-aba2a8cd7eaa + status: 404 Not Found + code: 404 + duration: 38.781087ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c553fcf5-6296-405e-b5e2-8c6275ac62ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 132 + body: "{\"message\":\"resource is not found\",\"resource\":\"application\",\"resource_id\":\"c553fcf5-6296-405e-b5e2-8c6275ac62ef\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "132" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 20c15eb9-0ff1-4324-bf5f-5dc59685ec53 + status: 404 Not Found + code: 404 + duration: 81.0783ms diff --git a/internal/services/iam/testdata/data-source-group-basic.cassette.yaml b/internal/services/iam/testdata/data-source-group-basic.cassette.yaml index d7a7efce0..4b12d5126 100644 --- a/internal/services/iam/testdata/data-source-group-basic.cassette.yaml +++ b/internal/services/iam/testdata/data-source-group-basic.cassette.yaml @@ -1,836 +1,569 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 120 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf_test_data_source_basic","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 334 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-09-05T14:01:10.725800Z","deletable":true,"description":"","editable":true,"id":"4e90b1c4-573a-4fd1-ba67-7517ce40d2d9","managed":false,"name":"tf_test_data_source_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:10.725800Z","user_ids":[]}' - headers: - Content-Length: - - "334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c25c971a-4a08-484b-8d55-51ae6acfbac4 - status: 200 OK - code: 200 - duration: 584.926ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/4e90b1c4-573a-4fd1-ba67-7517ce40d2d9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 334 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-09-05T14:01:10.725800Z","deletable":true,"description":"","editable":true,"id":"4e90b1c4-573a-4fd1-ba67-7517ce40d2d9","managed":false,"name":"tf_test_data_source_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:10.725800Z","user_ids":[]}' - headers: - Content-Length: - - "334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 043271ae-7f34-4c1a-a963-7a0a6fe32d55 - status: 200 OK - code: 200 - duration: 253.068834ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/4e90b1c4-573a-4fd1-ba67-7517ce40d2d9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 334 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-09-05T14:01:10.725800Z","deletable":true,"description":"","editable":true,"id":"4e90b1c4-573a-4fd1-ba67-7517ce40d2d9","managed":false,"name":"tf_test_data_source_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:10.725800Z","user_ids":[]}' - headers: - Content-Length: - - "334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9867700b-d776-4e3f-a2e4-1d890b3b9a30 - status: 200 OK - code: 200 - duration: 240.87925ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups?name=tf_test_data_source_basic&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: 363 - uncompressed: false - body: '{"groups":[{"application_ids":[],"created_at":"2025-09-05T14:01:10.725800Z","deletable":true,"description":"","editable":true,"id":"4e90b1c4-573a-4fd1-ba67-7517ce40d2d9","managed":false,"name":"tf_test_data_source_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:10.725800Z","user_ids":[]}],"total_count":1}' - headers: - Content-Length: - - "363" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d134d614-1295-4c7e-967c-1dd3a67c859c - status: 200 OK - code: 200 - duration: 311.810041ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/4e90b1c4-573a-4fd1-ba67-7517ce40d2d9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 334 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-09-05T14:01:10.725800Z","deletable":true,"description":"","editable":true,"id":"4e90b1c4-573a-4fd1-ba67-7517ce40d2d9","managed":false,"name":"tf_test_data_source_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:10.725800Z","user_ids":[]}' - headers: - Content-Length: - - "334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 007158a9-f9a4-41ce-8476-ccf8fbbb160e - status: 200 OK - code: 200 - duration: 236.980834ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/4e90b1c4-573a-4fd1-ba67-7517ce40d2d9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 334 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-09-05T14:01:10.725800Z","deletable":true,"description":"","editable":true,"id":"4e90b1c4-573a-4fd1-ba67-7517ce40d2d9","managed":false,"name":"tf_test_data_source_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:10.725800Z","user_ids":[]}' - headers: - Content-Length: - - "334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 752c1f6f-b847-4c4b-9c6a-92dfe6c428dd - status: 200 OK - code: 200 - duration: 267.621792ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/4e90b1c4-573a-4fd1-ba67-7517ce40d2d9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 334 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-09-05T14:01:10.725800Z","deletable":true,"description":"","editable":true,"id":"4e90b1c4-573a-4fd1-ba67-7517ce40d2d9","managed":false,"name":"tf_test_data_source_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:10.725800Z","user_ids":[]}' - headers: - Content-Length: - - "334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7de5183c-d2d6-4b75-a705-63eed444f157 - status: 200 OK - code: 200 - duration: 228.957333ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups?name=tf_test_data_source_basic&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: 363 - uncompressed: false - body: '{"groups":[{"application_ids":[],"created_at":"2025-09-05T14:01:10.725800Z","deletable":true,"description":"","editable":true,"id":"4e90b1c4-573a-4fd1-ba67-7517ce40d2d9","managed":false,"name":"tf_test_data_source_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:10.725800Z","user_ids":[]}],"total_count":1}' - headers: - Content-Length: - - "363" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 62f30ef3-3e1f-415e-b1c0-e27f87074bd3 - status: 200 OK - code: 200 - duration: 277.645125ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/4e90b1c4-573a-4fd1-ba67-7517ce40d2d9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 334 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-09-05T14:01:10.725800Z","deletable":true,"description":"","editable":true,"id":"4e90b1c4-573a-4fd1-ba67-7517ce40d2d9","managed":false,"name":"tf_test_data_source_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:10.725800Z","user_ids":[]}' - headers: - Content-Length: - - "334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ed0cb0f3-5623-43ab-a9d3-d0084845fd31 - status: 200 OK - code: 200 - duration: 205.337ms - - id: 9 - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/4e90b1c4-573a-4fd1-ba67-7517ce40d2d9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 334 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-09-05T14:01:10.725800Z","deletable":true,"description":"","editable":true,"id":"4e90b1c4-573a-4fd1-ba67-7517ce40d2d9","managed":false,"name":"tf_test_data_source_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:10.725800Z","user_ids":[]}' - headers: - Content-Length: - - "334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a9abc5b1-5f62-4c6f-add2-599abf11e3b2 - status: 200 OK - code: 200 - duration: 254.453917ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/4e90b1c4-573a-4fd1-ba67-7517ce40d2d9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 334 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-09-05T14:01:10.725800Z","deletable":true,"description":"","editable":true,"id":"4e90b1c4-573a-4fd1-ba67-7517ce40d2d9","managed":false,"name":"tf_test_data_source_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:10.725800Z","user_ids":[]}' - headers: - Content-Length: - - "334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5c9dfcd1-421f-479e-abc7-7cb887e32dfe - status: 200 OK - code: 200 - duration: 253.023958ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups?name=tf_test_data_source_basic&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: 363 - uncompressed: false - body: '{"groups":[{"application_ids":[],"created_at":"2025-09-05T14:01:10.725800Z","deletable":true,"description":"","editable":true,"id":"4e90b1c4-573a-4fd1-ba67-7517ce40d2d9","managed":false,"name":"tf_test_data_source_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:10.725800Z","user_ids":[]}],"total_count":1}' - headers: - Content-Length: - - "363" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f6a8a86e-12e7-411d-b763-b9c35bff4119 - status: 200 OK - code: 200 - duration: 283.083ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/4e90b1c4-573a-4fd1-ba67-7517ce40d2d9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 334 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-09-05T14:01:10.725800Z","deletable":true,"description":"","editable":true,"id":"4e90b1c4-573a-4fd1-ba67-7517ce40d2d9","managed":false,"name":"tf_test_data_source_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:10.725800Z","user_ids":[]}' - headers: - Content-Length: - - "334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2dea4078-ea7d-4e35-b1b2-db0b061dcb61 - status: 200 OK - code: 200 - duration: 227.482667ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/4e90b1c4-573a-4fd1-ba67-7517ce40d2d9 - 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, 05 Sep 2025 14:01:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3dbb30b7-e56a-45e1-ade8-e0c16966349b - status: 204 No Content - code: 204 - duration: 229.948041ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/4e90b1c4-573a-4fd1-ba67-7517ce40d2d9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 126 - uncompressed: false - body: '{"message":"resource is not found","resource":"group","resource_id":"4e90b1c4-573a-4fd1-ba67-7517ce40d2d9","type":"not_found"}' - headers: - Content-Length: - - "126" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4455abdb-ed96-4389-9741-8a27e16e93b9 - status: 404 Not Found - code: 404 - duration: 54.860458ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/4e90b1c4-573a-4fd1-ba67-7517ce40d2d9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 126 - uncompressed: false - body: '{"message":"resource is not found","resource":"group","resource_id":"4e90b1c4-573a-4fd1-ba67-7517ce40d2d9","type":"not_found"}' - headers: - Content-Length: - - "126" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 897ff3fe-b2d2-4027-9ccf-ba9b4f98ba20 - status: 404 Not Found - code: 404 - duration: 57.851875ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/4e90b1c4-573a-4fd1-ba67-7517ce40d2d9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 126 - uncompressed: false - body: '{"message":"resource is not found","resource":"group","resource_id":"4e90b1c4-573a-4fd1-ba67-7517ce40d2d9","type":"not_found"}' - headers: - Content-Length: - - "126" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b448de94-57c5-4f23-be7c-d63cc115a12e - status: 404 Not Found - code: 404 - duration: 55.185125ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 120 + host: api.scaleway.com + body: "{\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"name\":\"tf_test_data_source_basic\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 345 + body: "{\"id\":\"55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0\", \"created_at\":\"2025-11-17T17:10:52.297629Z\", \"updated_at\":\"2025-11-17T17:10:52.297629Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "345" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e419ba0f-05c0-48ed-b57b-fbe93bb516b3 + status: 200 OK + code: 200 + duration: 103.226169ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 345 + body: "{\"id\":\"55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0\", \"created_at\":\"2025-11-17T17:10:52.297629Z\", \"updated_at\":\"2025-11-17T17:10:52.297629Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "345" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9d218712-dece-4980-bd0e-c0a960261f43 + status: 200 OK + code: 200 + duration: 53.898713ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 345 + body: "{\"id\":\"55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0\", \"created_at\":\"2025-11-17T17:10:52.297629Z\", \"updated_at\":\"2025-11-17T17:10:52.297629Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "345" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 68fbbfb1-7619-4ade-a14d-c5619acf65dc + status: 200 OK + code: 200 + duration: 88.853568ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf_test_data_source_basic + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups?name=tf_test_data_source_basic&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 + content_length: 375 + body: "{\"groups\":[{\"id\":\"55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0\", \"created_at\":\"2025-11-17T17:10:52.297629Z\", \"updated_at\":\"2025-11-17T17:10:52.297629Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}], \"total_count\":1}" + headers: + Content-Length: + - "375" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 98a7d812-972a-4b1a-9806-294a5417c356 + status: 200 OK + code: 200 + duration: 170.998416ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 345 + body: "{\"id\":\"55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0\", \"created_at\":\"2025-11-17T17:10:52.297629Z\", \"updated_at\":\"2025-11-17T17:10:52.297629Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "345" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8c62ca8a-6d65-48c7-8ca6-9359cd91d57d + status: 200 OK + code: 200 + duration: 91.25523ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 345 + body: "{\"id\":\"55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0\", \"created_at\":\"2025-11-17T17:10:52.297629Z\", \"updated_at\":\"2025-11-17T17:10:52.297629Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "345" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f6126ef4-49d5-4daf-824a-f990a5d32116 + status: 200 OK + code: 200 + duration: 59.094166ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 345 + body: "{\"id\":\"55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0\", \"created_at\":\"2025-11-17T17:10:52.297629Z\", \"updated_at\":\"2025-11-17T17:10:52.297629Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "345" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d64ddd4e-9061-4a5f-b024-60e8b5ba385e + status: 200 OK + code: 200 + duration: 89.0169ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf_test_data_source_basic + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups?name=tf_test_data_source_basic&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 + content_length: 375 + body: "{\"groups\":[{\"id\":\"55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0\", \"created_at\":\"2025-11-17T17:10:52.297629Z\", \"updated_at\":\"2025-11-17T17:10:52.297629Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}], \"total_count\":1}" + headers: + Content-Length: + - "375" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6f02125b-8c42-462f-ba84-0db34e33e367 + status: 200 OK + code: 200 + duration: 127.039317ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 345 + body: "{\"id\":\"55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0\", \"created_at\":\"2025-11-17T17:10:52.297629Z\", \"updated_at\":\"2025-11-17T17:10:52.297629Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "345" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f9a7bbc6-ea24-4b6f-bc86-ae0f123367a1 + status: 200 OK + code: 200 + duration: 41.01221ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 345 + body: "{\"id\":\"55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0\", \"created_at\":\"2025-11-17T17:10:52.297629Z\", \"updated_at\":\"2025-11-17T17:10:52.297629Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "345" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 891ca641-b763-48fe-a75b-2419390c01af + status: 200 OK + code: 200 + duration: 52.021753ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 345 + body: "{\"id\":\"55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0\", \"created_at\":\"2025-11-17T17:10:52.297629Z\", \"updated_at\":\"2025-11-17T17:10:52.297629Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "345" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - bcc1624b-7817-489c-8ebc-f38d5ba911c0 + status: 200 OK + code: 200 + duration: 43.614569ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf_test_data_source_basic + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups?name=tf_test_data_source_basic&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 + content_length: 375 + body: "{\"groups\":[{\"id\":\"55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0\", \"created_at\":\"2025-11-17T17:10:52.297629Z\", \"updated_at\":\"2025-11-17T17:10:52.297629Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}], \"total_count\":1}" + headers: + Content-Length: + - "375" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8e9832bd-c143-4c82-a46b-86cc174fdb20 + status: 200 OK + code: 200 + duration: 147.877909ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 345 + body: "{\"id\":\"55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0\", \"created_at\":\"2025-11-17T17:10:52.297629Z\", \"updated_at\":\"2025-11-17T17:10:52.297629Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "345" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1bad603d-4e3d-484e-81b9-6d1a8947efb5 + status: 200 OK + code: 200 + duration: 58.94666ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0905a4aa-2ae6-4b9e-945f-dd7a260c62e8 + status: 204 No Content + code: 204 + duration: 172.868062ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 126 + body: "{\"message\":\"resource is not found\",\"resource\":\"group\",\"resource_id\":\"55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "126" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c91174f9-7da2-443c-a28f-5adb346b247f + status: 404 Not Found + code: 404 + duration: 75.314689ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 126 + body: "{\"message\":\"resource is not found\",\"resource\":\"group\",\"resource_id\":\"55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "126" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c6b28952-8588-4911-8ff3-b8b643a35771 + status: 404 Not Found + code: 404 + duration: 84.676473ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 126 + body: "{\"message\":\"resource is not found\",\"resource\":\"group\",\"resource_id\":\"55b5f6c4-5f6b-4646-a34f-b84fcf21e6a0\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "126" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 047cddb0-9cfc-4ec7-9110-5ae250c20edc + status: 404 Not Found + code: 404 + duration: 35.111756ms diff --git a/internal/services/iam/testdata/data-source-group-users-and-applications.cassette.yaml b/internal/services/iam/testdata/data-source-group-users-and-applications.cassette.yaml index b35235973..eb8461c96 100644 --- a/internal/services/iam/testdata/data-source-group-users-and-applications.cassette.yaml +++ b/internal/services/iam/testdata/data-source-group-users-and-applications.cassette.yaml @@ -1,1377 +1,925 @@ --- 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","first_name":"Developper Tools","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"last_name":"TEAM","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e41a650e-7602-4c51-a0dc-482b0c40b716 - status: 200 OK - code: 200 - duration: 398.585834ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 547 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","first_name":"","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","last_name":"","locale":"fr_FR","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-03-05T14:31:18.088783Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "547" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5e2b6658-9c09-4fa7-ac79-1e070220fdf0 - status: 200 OK - code: 200 - duration: 467.963209ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 120 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_iam_group_ds_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 315 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:21.642783Z","deletable":true,"description":"","editable":true,"id":"9487861d-fb4b-42b4-abf7-704140bd694d","managed":false,"name":"tf_tests_iam_group_ds_app","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:21.642783Z"}' - headers: - Content-Length: - - "315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ec8e678a-372d-4279-a8cb-89912f96410f - status: 200 OK - code: 200 - duration: 303.906583ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/9487861d-fb4b-42b4-abf7-704140bd694d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 315 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:21.642783Z","deletable":true,"description":"","editable":true,"id":"9487861d-fb4b-42b4-abf7-704140bd694d","managed":false,"name":"tf_tests_iam_group_ds_app","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:21.642783Z"}' - headers: - Content-Length: - - "315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 56e683f2-c6ad-40db-acce-be469060e96d - status: 200 OK - code: 200 - duration: 238.043375ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 118 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf_test_data_source_mix","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 332 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-09-05T14:01:22.168791Z","deletable":true,"description":"","editable":true,"id":"c68a8fc4-79c4-4f11-ba28-3b997b8d3c66","managed":false,"name":"tf_test_data_source_mix","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:22.168791Z","user_ids":[]}' - headers: - Content-Length: - - "332" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 253e6201-c75b-4536-a991-3787358a3a00 - status: 200 OK - code: 200 - duration: 275.899083ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 151 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_ids":["ef29ce05-3f2b-4fa0-a259-d76110850d57","84d20ae1-9650-419a-ab74-7ab09b6262e0"],"application_ids":["9487861d-fb4b-42b4-abf7-704140bd694d"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c68a8fc4-79c4-4f11-ba28-3b997b8d3c66/members - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 447 - uncompressed: false - body: '{"application_ids":["9487861d-fb4b-42b4-abf7-704140bd694d"],"created_at":"2025-09-05T14:01:22.168791Z","deletable":true,"description":"","editable":true,"id":"c68a8fc4-79c4-4f11-ba28-3b997b8d3c66","managed":false,"name":"tf_test_data_source_mix","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:22.168791Z","user_ids":["ef29ce05-3f2b-4fa0-a259-d76110850d57","84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 25e641ca-0a8d-4aa3-945c-891207646bc3 - status: 200 OK - code: 200 - duration: 496.914417ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c68a8fc4-79c4-4f11-ba28-3b997b8d3c66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 447 - uncompressed: false - body: '{"application_ids":["9487861d-fb4b-42b4-abf7-704140bd694d"],"created_at":"2025-09-05T14:01:22.168791Z","deletable":true,"description":"","editable":true,"id":"c68a8fc4-79c4-4f11-ba28-3b997b8d3c66","managed":false,"name":"tf_test_data_source_mix","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:22.168791Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}' - headers: - Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4c58dcd5-8939-485d-9791-aa81f310271e - status: 200 OK - code: 200 - duration: 220.585959ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c68a8fc4-79c4-4f11-ba28-3b997b8d3c66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 447 - uncompressed: false - body: '{"application_ids":["9487861d-fb4b-42b4-abf7-704140bd694d"],"created_at":"2025-09-05T14:01:22.168791Z","deletable":true,"description":"","editable":true,"id":"c68a8fc4-79c4-4f11-ba28-3b997b8d3c66","managed":false,"name":"tf_test_data_source_mix","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:22.168791Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}' - headers: - Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f7f9dbe1-ee8e-4b77-9c48-3569dfdf759f - status: 200 OK - code: 200 - duration: 300.318041ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups?name=tf_test_data_source_mix&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: 476 - uncompressed: false - body: '{"groups":[{"application_ids":["9487861d-fb4b-42b4-abf7-704140bd694d"],"created_at":"2025-09-05T14:01:22.168791Z","deletable":true,"description":"","editable":true,"id":"c68a8fc4-79c4-4f11-ba28-3b997b8d3c66","managed":false,"name":"tf_test_data_source_mix","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:22.168791Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}],"total_count":1}' - headers: - Content-Length: - - "476" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c1e74d46-a960-493e-ac25-d286c144ba54 - status: 200 OK - code: 200 - duration: 309.170458ms - - id: 9 - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c68a8fc4-79c4-4f11-ba28-3b997b8d3c66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 447 - uncompressed: false - body: '{"application_ids":["9487861d-fb4b-42b4-abf7-704140bd694d"],"created_at":"2025-09-05T14:01:22.168791Z","deletable":true,"description":"","editable":true,"id":"c68a8fc4-79c4-4f11-ba28-3b997b8d3c66","managed":false,"name":"tf_test_data_source_mix","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:22.168791Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}' - headers: - Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9c9ed031-b64b-41ba-abec-615f39e98c8a - status: 200 OK - code: 200 - duration: 246.357791ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c68a8fc4-79c4-4f11-ba28-3b997b8d3c66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 447 - uncompressed: false - body: '{"application_ids":["9487861d-fb4b-42b4-abf7-704140bd694d"],"created_at":"2025-09-05T14:01:22.168791Z","deletable":true,"description":"","editable":true,"id":"c68a8fc4-79c4-4f11-ba28-3b997b8d3c66","managed":false,"name":"tf_test_data_source_mix","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:22.168791Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}' - headers: - Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e04863cc-4092-402c-8985-71e9ec43431f - status: 200 OK - code: 200 - duration: 248.311667ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","first_name":"Developper Tools","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"last_name":"TEAM","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 914ce1b3-866a-4188-a1ff-ead5b6b26b81 - status: 200 OK - code: 200 - duration: 235.078375ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 547 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","first_name":"","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","last_name":"","locale":"fr_FR","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-03-05T14:31:18.088783Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "547" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0becc610-d33a-4487-8c87-a62405b7f872 - status: 200 OK - code: 200 - duration: 254.242708ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups?name=tf_test_data_source_mix&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: 476 - uncompressed: false - body: '{"groups":[{"application_ids":["9487861d-fb4b-42b4-abf7-704140bd694d"],"created_at":"2025-09-05T14:01:22.168791Z","deletable":true,"description":"","editable":true,"id":"c68a8fc4-79c4-4f11-ba28-3b997b8d3c66","managed":false,"name":"tf_test_data_source_mix","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:22.168791Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}],"total_count":1}' - headers: - Content-Length: - - "476" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8ae3b54e-427b-4a1e-866f-e36e8c86bae7 - status: 200 OK - code: 200 - duration: 273.196333ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c68a8fc4-79c4-4f11-ba28-3b997b8d3c66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 447 - uncompressed: false - body: '{"application_ids":["9487861d-fb4b-42b4-abf7-704140bd694d"],"created_at":"2025-09-05T14:01:22.168791Z","deletable":true,"description":"","editable":true,"id":"c68a8fc4-79c4-4f11-ba28-3b997b8d3c66","managed":false,"name":"tf_test_data_source_mix","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:22.168791Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}' - headers: - Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ea130a49-f30b-484f-94df-997244ef7104 - status: 200 OK - code: 200 - duration: 284.590792ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c68a8fc4-79c4-4f11-ba28-3b997b8d3c66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 447 - uncompressed: false - body: '{"application_ids":["9487861d-fb4b-42b4-abf7-704140bd694d"],"created_at":"2025-09-05T14:01:22.168791Z","deletable":true,"description":"","editable":true,"id":"c68a8fc4-79c4-4f11-ba28-3b997b8d3c66","managed":false,"name":"tf_test_data_source_mix","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:22.168791Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}' - headers: - Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 213a3793-da12-49d3-8af7-551d1b24362b - status: 200 OK - code: 200 - duration: 234.769041ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/9487861d-fb4b-42b4-abf7-704140bd694d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 315 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:21.642783Z","deletable":true,"description":"","editable":true,"id":"9487861d-fb4b-42b4-abf7-704140bd694d","managed":false,"name":"tf_tests_iam_group_ds_app","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:21.642783Z"}' - headers: - Content-Length: - - "315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f4c1197b-499d-431a-86bb-dc87b9d10a95 - status: 200 OK - code: 200 - duration: 221.648417ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","first_name":"Developper Tools","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"last_name":"TEAM","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 571b00dd-4297-40af-8969-13654bff9491 - status: 200 OK - code: 200 - duration: 225.363334ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 547 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","first_name":"","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","last_name":"","locale":"fr_FR","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-03-05T14:31:18.088783Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "547" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 99bf1ffd-d998-4b59-8b8d-526d3b5c501b - status: 200 OK - code: 200 - duration: 291.140542ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c68a8fc4-79c4-4f11-ba28-3b997b8d3c66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 447 - uncompressed: false - body: '{"application_ids":["9487861d-fb4b-42b4-abf7-704140bd694d"],"created_at":"2025-09-05T14:01:22.168791Z","deletable":true,"description":"","editable":true,"id":"c68a8fc4-79c4-4f11-ba28-3b997b8d3c66","managed":false,"name":"tf_test_data_source_mix","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:22.168791Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}' - headers: - Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 62e0e682-7cfb-4cce-87c5-691567fef698 - status: 200 OK - code: 200 - duration: 266.279042ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c68a8fc4-79c4-4f11-ba28-3b997b8d3c66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 447 - uncompressed: false - body: '{"application_ids":["9487861d-fb4b-42b4-abf7-704140bd694d"],"created_at":"2025-09-05T14:01:22.168791Z","deletable":true,"description":"","editable":true,"id":"c68a8fc4-79c4-4f11-ba28-3b997b8d3c66","managed":false,"name":"tf_test_data_source_mix","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:22.168791Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}' - headers: - Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fb792e08-548c-46ac-aa78-862a039d9038 - status: 200 OK - code: 200 - duration: 262.933083ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups?name=tf_test_data_source_mix&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: 476 - uncompressed: false - body: '{"groups":[{"application_ids":["9487861d-fb4b-42b4-abf7-704140bd694d"],"created_at":"2025-09-05T14:01:22.168791Z","deletable":true,"description":"","editable":true,"id":"c68a8fc4-79c4-4f11-ba28-3b997b8d3c66","managed":false,"name":"tf_test_data_source_mix","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:22.168791Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}],"total_count":1}' - headers: - Content-Length: - - "476" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8c058310-9d7b-4b66-a13b-c27fb66d2bb4 - status: 200 OK - code: 200 - duration: 275.859083ms - - id: 22 - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c68a8fc4-79c4-4f11-ba28-3b997b8d3c66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 447 - uncompressed: false - body: '{"application_ids":["9487861d-fb4b-42b4-abf7-704140bd694d"],"created_at":"2025-09-05T14:01:22.168791Z","deletable":true,"description":"","editable":true,"id":"c68a8fc4-79c4-4f11-ba28-3b997b8d3c66","managed":false,"name":"tf_test_data_source_mix","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:01:22.168791Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}' - headers: - Content-Length: - - "447" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2d7ae726-5c40-4fdf-8eba-772ebc2ebc45 - status: 200 OK - code: 200 - duration: 210.90575ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c68a8fc4-79c4-4f11-ba28-3b997b8d3c66 - 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, 05 Sep 2025 14:01:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a695aeb2-9240-4650-aee5-ab09b3600987 - status: 204 No Content - code: 204 - duration: 252.792625ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/9487861d-fb4b-42b4-abf7-704140bd694d - 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, 05 Sep 2025 14:01:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b515324c-7ef6-4a16-a053-c2287dddb882 - status: 204 No Content - code: 204 - duration: 208.889667ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c68a8fc4-79c4-4f11-ba28-3b997b8d3c66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 126 - uncompressed: false - body: '{"message":"resource is not found","resource":"group","resource_id":"c68a8fc4-79c4-4f11-ba28-3b997b8d3c66","type":"not_found"}' - headers: - Content-Length: - - "126" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1605f6e7-45ac-474c-b8a0-4248a832857d - status: 404 Not Found - code: 404 - duration: 54.851083ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c68a8fc4-79c4-4f11-ba28-3b997b8d3c66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 126 - uncompressed: false - body: '{"message":"resource is not found","resource":"group","resource_id":"c68a8fc4-79c4-4f11-ba28-3b997b8d3c66","type":"not_found"}' - headers: - Content-Length: - - "126" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d1b9113-747d-4086-bfc1-aa2b70148f78 - status: 404 Not Found - code: 404 - duration: 62.95ms - - id: 27 - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c68a8fc4-79c4-4f11-ba28-3b997b8d3c66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 126 - uncompressed: false - body: '{"message":"resource is not found","resource":"group","resource_id":"c68a8fc4-79c4-4f11-ba28-3b997b8d3c66","type":"not_found"}' - headers: - Content-Length: - - "126" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6910d054-6aca-4b62-a0f2-85d0332431a0 - status: 404 Not Found - code: 404 - duration: 51.808667ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ed65b43a-5cf2-4d73-b0a6-ac755a63cdcf + status: 200 OK + code: 200 + duration: 39.211194ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6ef1b21a-b4eb-4856-81ad-74fd24e21d5d + status: 200 OK + code: 200 + duration: 84.075144ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 120 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_iam_group_ds_app\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 325 + body: "{\"id\":\"5dd9c76b-63b7-426b-85a9-92af2c6ba134\", \"name\":\"tf_tests_iam_group_ds_app\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:52.963490Z\", \"updated_at\":\"2025-11-17T17:10:52.963490Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "325" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 19a134c6-5d70-4302-a283-b4566221da68 + status: 200 OK + code: 200 + duration: 220.801435ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/5dd9c76b-63b7-426b-85a9-92af2c6ba134 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 325 + body: "{\"id\":\"5dd9c76b-63b7-426b-85a9-92af2c6ba134\", \"name\":\"tf_tests_iam_group_ds_app\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:52.963490Z\", \"updated_at\":\"2025-11-17T17:10:52.963490Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "325" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 01271905-620e-4e96-b8c9-676637d87f4d + status: 200 OK + code: 200 + duration: 90.209029ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + host: api.scaleway.com + body: "{\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"name\":\"tf_test_data_source_mix\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 343 + body: "{\"id\":\"264e246a-7818-4b21-bce2-e96d1060a0f0\", \"created_at\":\"2025-11-17T17:10:53.319962Z\", \"updated_at\":\"2025-11-17T17:10:53.319962Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_mix\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "343" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b52caeb2-0c46-476b-a19c-4dc6867d1e48 + status: 200 OK + code: 200 + duration: 238.117203ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 151 + host: api.scaleway.com + body: "{\"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\",\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"],\"application_ids\":[\"5dd9c76b-63b7-426b-85a9-92af2c6ba134\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/264e246a-7818-4b21-bce2-e96d1060a0f0/members + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 459 + body: "{\"id\":\"264e246a-7818-4b21-bce2-e96d1060a0f0\", \"created_at\":\"2025-11-17T17:10:53.319962Z\", \"updated_at\":\"2025-11-17T17:10:53.319962Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_mix\", \"description\":\"\", \"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"84d20ae1-9650-419a-ab74-7ab09b6262e0\"], \"application_ids\":[\"5dd9c76b-63b7-426b-85a9-92af2c6ba134\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "459" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3d8b12d8-4bcb-43e5-89d6-cc355c1a83bd + status: 200 OK + code: 200 + duration: 429.580809ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/264e246a-7818-4b21-bce2-e96d1060a0f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 459 + body: "{\"id\":\"264e246a-7818-4b21-bce2-e96d1060a0f0\", \"created_at\":\"2025-11-17T17:10:53.319962Z\", \"updated_at\":\"2025-11-17T17:10:53.319962Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_mix\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[\"5dd9c76b-63b7-426b-85a9-92af2c6ba134\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "459" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 4cacc867-6526-404d-a1fa-ff06c4a71478 + status: 200 OK + code: 200 + duration: 51.347986ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/264e246a-7818-4b21-bce2-e96d1060a0f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 459 + body: "{\"id\":\"264e246a-7818-4b21-bce2-e96d1060a0f0\", \"created_at\":\"2025-11-17T17:10:53.319962Z\", \"updated_at\":\"2025-11-17T17:10:53.319962Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_mix\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[\"5dd9c76b-63b7-426b-85a9-92af2c6ba134\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "459" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6fe4d7f8-3455-4dd0-8728-d3c35a7985d7 + status: 200 OK + code: 200 + duration: 85.104944ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf_test_data_source_mix + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups?name=tf_test_data_source_mix&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 + content_length: 489 + body: "{\"groups\":[{\"id\":\"264e246a-7818-4b21-bce2-e96d1060a0f0\", \"created_at\":\"2025-11-17T17:10:53.319962Z\", \"updated_at\":\"2025-11-17T17:10:53.319962Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_mix\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[\"5dd9c76b-63b7-426b-85a9-92af2c6ba134\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}], \"total_count\":1}" + headers: + Content-Length: + - "489" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3213d5ed-0c1c-44ce-b904-52735e2c2422 + status: 200 OK + code: 200 + duration: 122.622486ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/264e246a-7818-4b21-bce2-e96d1060a0f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 459 + body: "{\"id\":\"264e246a-7818-4b21-bce2-e96d1060a0f0\", \"created_at\":\"2025-11-17T17:10:53.319962Z\", \"updated_at\":\"2025-11-17T17:10:53.319962Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_mix\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[\"5dd9c76b-63b7-426b-85a9-92af2c6ba134\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "459" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e8396065-3b92-4137-94ed-f451938a0fd8 + status: 200 OK + code: 200 + duration: 85.139997ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/264e246a-7818-4b21-bce2-e96d1060a0f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 459 + body: "{\"id\":\"264e246a-7818-4b21-bce2-e96d1060a0f0\", \"created_at\":\"2025-11-17T17:10:53.319962Z\", \"updated_at\":\"2025-11-17T17:10:53.319962Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_mix\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[\"5dd9c76b-63b7-426b-85a9-92af2c6ba134\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "459" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 68357d7d-f6b6-44f5-a0ff-8dd82deea77a + status: 200 OK + code: 200 + duration: 92.472723ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b4f38ecf-eb47-4d3f-a283-8e5475d756b7 + status: 200 OK + code: 200 + duration: 50.020939ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0f2a315c-5979-446d-8980-7e9d7b246410 + status: 200 OK + code: 200 + duration: 58.317994ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf_test_data_source_mix + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups?name=tf_test_data_source_mix&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 + content_length: 489 + body: "{\"groups\":[{\"id\":\"264e246a-7818-4b21-bce2-e96d1060a0f0\", \"created_at\":\"2025-11-17T17:10:53.319962Z\", \"updated_at\":\"2025-11-17T17:10:53.319962Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_mix\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[\"5dd9c76b-63b7-426b-85a9-92af2c6ba134\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}], \"total_count\":1}" + headers: + Content-Length: + - "489" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b0a31151-8fbd-44ae-957b-1c43d91d69f9 + status: 200 OK + code: 200 + duration: 80.66078ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/264e246a-7818-4b21-bce2-e96d1060a0f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 459 + body: "{\"id\":\"264e246a-7818-4b21-bce2-e96d1060a0f0\", \"created_at\":\"2025-11-17T17:10:53.319962Z\", \"updated_at\":\"2025-11-17T17:10:53.319962Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_mix\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[\"5dd9c76b-63b7-426b-85a9-92af2c6ba134\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "459" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a83b4659-2c31-4fa4-9a58-c0700b0c138c + status: 200 OK + code: 200 + duration: 108.983466ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/264e246a-7818-4b21-bce2-e96d1060a0f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 459 + body: "{\"id\":\"264e246a-7818-4b21-bce2-e96d1060a0f0\", \"created_at\":\"2025-11-17T17:10:53.319962Z\", \"updated_at\":\"2025-11-17T17:10:53.319962Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_mix\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[\"5dd9c76b-63b7-426b-85a9-92af2c6ba134\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "459" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f7fb40e8-dcfe-4e9a-8e38-5bc0c90b64cf + status: 200 OK + code: 200 + duration: 69.449949ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3b9cf3e1-98cb-469b-9bff-c1e3c7352b2c + status: 200 OK + code: 200 + duration: 79.866696ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5c9f7730-7dcc-4ffd-963d-14801e1214f2 + status: 200 OK + code: 200 + duration: 100.205209ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/5dd9c76b-63b7-426b-85a9-92af2c6ba134 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 325 + body: "{\"id\":\"5dd9c76b-63b7-426b-85a9-92af2c6ba134\", \"name\":\"tf_tests_iam_group_ds_app\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:52.963490Z\", \"updated_at\":\"2025-11-17T17:10:52.963490Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "325" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 727c7358-4e60-4fbf-bbc5-759e258985db + status: 200 OK + code: 200 + duration: 100.309091ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/264e246a-7818-4b21-bce2-e96d1060a0f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 459 + body: "{\"id\":\"264e246a-7818-4b21-bce2-e96d1060a0f0\", \"created_at\":\"2025-11-17T17:10:53.319962Z\", \"updated_at\":\"2025-11-17T17:10:53.319962Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_mix\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[\"5dd9c76b-63b7-426b-85a9-92af2c6ba134\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "459" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1ade5c51-cd27-4b2f-abe7-e5ee129adc7e + status: 200 OK + code: 200 + duration: 107.066655ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/264e246a-7818-4b21-bce2-e96d1060a0f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 459 + body: "{\"id\":\"264e246a-7818-4b21-bce2-e96d1060a0f0\", \"created_at\":\"2025-11-17T17:10:53.319962Z\", \"updated_at\":\"2025-11-17T17:10:53.319962Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_mix\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[\"5dd9c76b-63b7-426b-85a9-92af2c6ba134\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "459" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9bda41e0-a468-40c8-8481-d90261407691 + status: 200 OK + code: 200 + duration: 56.921155ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf_test_data_source_mix + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups?name=tf_test_data_source_mix&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 + content_length: 489 + body: "{\"groups\":[{\"id\":\"264e246a-7818-4b21-bce2-e96d1060a0f0\", \"created_at\":\"2025-11-17T17:10:53.319962Z\", \"updated_at\":\"2025-11-17T17:10:53.319962Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_mix\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[\"5dd9c76b-63b7-426b-85a9-92af2c6ba134\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}], \"total_count\":1}" + headers: + Content-Length: + - "489" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e1d07dbe-38e4-4210-b458-2a5d170d5f85 + status: 200 OK + code: 200 + duration: 83.307692ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/264e246a-7818-4b21-bce2-e96d1060a0f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 459 + body: "{\"id\":\"264e246a-7818-4b21-bce2-e96d1060a0f0\", \"created_at\":\"2025-11-17T17:10:53.319962Z\", \"updated_at\":\"2025-11-17T17:10:53.319962Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_test_data_source_mix\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[\"5dd9c76b-63b7-426b-85a9-92af2c6ba134\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "459" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - fd491b17-4113-42c2-bee7-eb0c84a0b393 + status: 200 OK + code: 200 + duration: 94.808841ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/264e246a-7818-4b21-bce2-e96d1060a0f0 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0735ee1f-922f-4ad5-9dad-81cc456bea1d + status: 204 No Content + code: 204 + duration: 138.263678ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/5dd9c76b-63b7-426b-85a9-92af2c6ba134 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ea64f406-f59f-4f70-b547-fcea3a543da1 + status: 204 No Content + code: 204 + duration: 56.751317ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/264e246a-7818-4b21-bce2-e96d1060a0f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 126 + body: "{\"message\":\"resource is not found\",\"resource\":\"group\",\"resource_id\":\"264e246a-7818-4b21-bce2-e96d1060a0f0\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "126" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a835f5b5-e006-4c84-ab53-05377fae0407 + status: 404 Not Found + code: 404 + duration: 34.764015ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/264e246a-7818-4b21-bce2-e96d1060a0f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 126 + body: "{\"message\":\"resource is not found\",\"resource\":\"group\",\"resource_id\":\"264e246a-7818-4b21-bce2-e96d1060a0f0\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "126" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 49ae413f-48ae-4103-8707-4d8597eee2d6 + status: 404 Not Found + code: 404 + duration: 82.517667ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/264e246a-7818-4b21-bce2-e96d1060a0f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 126 + body: "{\"message\":\"resource is not found\",\"resource\":\"group\",\"resource_id\":\"264e246a-7818-4b21-bce2-e96d1060a0f0\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "126" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 306af2cc-ecbb-418a-bb48-2e6e27b0f434 + status: 404 Not Found + code: 404 + duration: 34.369476ms diff --git a/internal/services/iam/testdata/data-source-policy-basic.cassette.yaml b/internal/services/iam/testdata/data-source-policy-basic.cassette.yaml index 944a39aae..e367e1e79 100644 --- a/internal/services/iam/testdata/data-source-policy-basic.cassette.yaml +++ b/internal/services/iam/testdata/data-source-policy-basic.cassette.yaml @@ -1,1326 +1,910 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 130 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-project-3825680800815807070","organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 287 - uncompressed: false - body: '{"created_at":"2025-10-27T14:15:55.109685Z","description":"","id":"20489b31-1589-4ef8-b7f1-d56854c56311","name":"test-acc-scaleway-project-3825680800815807070","organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","qualification":null,"updated_at":"2025-10-27T14:15:55.109685Z"}' - headers: - Content-Length: - - "287" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7b40094a-47b5-4534-8083-d5762577c1fb - status: 200 OK - code: 200 - duration: 414.427722ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 142 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-iam-app-4022574105066742639","organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","description":"","tags":null}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 345 - uncompressed: false - body: '{"created_at":"2025-10-27T14:15:55.345068Z","deletable":true,"description":"","editable":true,"id":"7b1feb71-adc1-4566-b05d-2c324a06a51f","managed":false,"name":"test-acc-scaleway-iam-app-4022574105066742639","nb_api_keys":0,"organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","tags":[],"updated_at":"2025-10-27T14:15:55.345068Z"}' - headers: - Content-Length: - - "345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ce6b33ad-6a52-442c-85bf-f4bca3679247 - status: 200 OK - code: 200 - duration: 89.476419ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 323 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-iam-policy-6431857504774278413","description":"","organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","rules":[{"permission_set_names":["IAMManager"],"condition":"","organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e"}],"tags":null,"application_id":"7b1feb71-adc1-4566-b05d-2c324a06a51f"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - body: '{"application_id":"7b1feb71-adc1-4566-b05d-2c324a06a51f","created_at":"2025-10-27T14:15:55.444120Z","deletable":true,"description":"","editable":true,"id":"8505e513-abf5-4bb2-8a48-83ff87d0c7e7","managed":false,"name":"test-acc-scaleway-iam-policy-6431857504774278413","nb_permission_sets":0,"nb_rules":0,"nb_scopes":0,"organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","tags":[],"updated_at":"2025-10-27T14:15:55.444120Z"}' - headers: - Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ffb703f4-6aad-4f17-a18f-c007fbda4ed9 - status: 200 OK - code: 200 - duration: 120.079193ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 134 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"7b1feb71-adc1-4566-b05d-2c324a06a51f","default_project_id":"20489b31-1589-4ef8-b7f1-d56854c56311","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 416 - uncompressed: false - body: '{"access_key":"SCWDBJTHDD5F2E0N5S2T","application_id":"7b1feb71-adc1-4566-b05d-2c324a06a51f","created_at":"2025-10-27T14:15:55.574034Z","creation_ip":"51.159.73.145","default_project_id":"20489b31-1589-4ef8-b7f1-d56854c56311","deletable":true,"description":"","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-10-27T14:15:55.574034Z"}' - headers: - Content-Length: - - "416" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bfa6be1d-db08-4f3c-9be4-36ee8736050b - status: 200 OK - code: 200 - duration: 110.840852ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies?order_by=policy_name_asc&organization_id=57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e&policy_name=test-acc-scaleway-iam-policy-6431857504774278413 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"policies":[{"application_id":"7b1feb71-adc1-4566-b05d-2c324a06a51f","created_at":"2025-10-27T14:15:55.444120Z","deletable":true,"description":"","editable":true,"id":"8505e513-abf5-4bb2-8a48-83ff87d0c7e7","managed":false,"name":"test-acc-scaleway-iam-policy-6431857504774278413","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","tags":[],"updated_at":"2025-10-27T14:15:55.444120Z"}],"total_count":1}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 04f5ef1b-99b1-4f1e-847d-c529958df003 - status: 200 OK - code: 200 - duration: 62.694871ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/8505e513-abf5-4bb2-8a48-83ff87d0c7e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - body: '{"application_id":"7b1feb71-adc1-4566-b05d-2c324a06a51f","created_at":"2025-10-27T14:15:55.444120Z","deletable":true,"description":"","editable":true,"id":"8505e513-abf5-4bb2-8a48-83ff87d0c7e7","managed":false,"name":"test-acc-scaleway-iam-policy-6431857504774278413","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","tags":[],"updated_at":"2025-10-27T14:15:55.444120Z"}' - headers: - Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6f29914b-e6f9-4b0a-b0dc-b7e9f9e7ff4f - status: 200 OK - code: 200 - duration: 80.789734ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/8505e513-abf5-4bb2-8a48-83ff87d0c7e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - body: '{"application_id":"7b1feb71-adc1-4566-b05d-2c324a06a51f","created_at":"2025-10-27T14:15:55.444120Z","deletable":true,"description":"","editable":true,"id":"8505e513-abf5-4bb2-8a48-83ff87d0c7e7","managed":false,"name":"test-acc-scaleway-iam-policy-6431857504774278413","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","tags":[],"updated_at":"2025-10-27T14:15:55.444120Z"}' - headers: - Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 125c16c3-f3b0-4242-80f0-5281c943d6e2 - status: 200 OK - code: 200 - duration: 62.540791ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=8505e513-abf5-4bb2-8a48-83ff87d0c7e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 232 - uncompressed: false - body: '{"rules":[{"condition":"","id":"8284e980-a693-43d2-9b3f-6db845e72f30","organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","permission_set_names":["IAMManager"],"permission_sets_scope_type":"organization"}],"total_count":1}' - headers: - Content-Length: - - "232" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fd5df996-defc-49a2-88ea-e77439b5df0a - status: 200 OK - code: 200 - duration: 101.924244ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=8505e513-abf5-4bb2-8a48-83ff87d0c7e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 232 - uncompressed: false - body: '{"rules":[{"condition":"","id":"8284e980-a693-43d2-9b3f-6db845e72f30","organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","permission_set_names":["IAMManager"],"permission_sets_scope_type":"organization"}],"total_count":1}' - headers: - Content-Length: - - "232" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a99608be-3077-4366-9ace-815c04aa67bd - status: 200 OK - code: 200 - duration: 97.846558ms - - id: 9 - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/8505e513-abf5-4bb2-8a48-83ff87d0c7e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - body: '{"application_id":"7b1feb71-adc1-4566-b05d-2c324a06a51f","created_at":"2025-10-27T14:15:55.444120Z","deletable":true,"description":"","editable":true,"id":"8505e513-abf5-4bb2-8a48-83ff87d0c7e7","managed":false,"name":"test-acc-scaleway-iam-policy-6431857504774278413","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","tags":[],"updated_at":"2025-10-27T14:15:55.444120Z"}' - headers: - Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6ad80b34-1a64-44c9-9dfe-1513808ac69a - status: 200 OK - code: 200 - duration: 64.477617ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/8505e513-abf5-4bb2-8a48-83ff87d0c7e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - body: '{"application_id":"7b1feb71-adc1-4566-b05d-2c324a06a51f","created_at":"2025-10-27T14:15:55.444120Z","deletable":true,"description":"","editable":true,"id":"8505e513-abf5-4bb2-8a48-83ff87d0c7e7","managed":false,"name":"test-acc-scaleway-iam-policy-6431857504774278413","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","tags":[],"updated_at":"2025-10-27T14:15:55.444120Z"}' - headers: - Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7b3d2586-4cf4-45bb-ab12-8676d162b237 - status: 200 OK - code: 200 - duration: 63.304381ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/8505e513-abf5-4bb2-8a48-83ff87d0c7e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - body: '{"application_id":"7b1feb71-adc1-4566-b05d-2c324a06a51f","created_at":"2025-10-27T14:15:55.444120Z","deletable":true,"description":"","editable":true,"id":"8505e513-abf5-4bb2-8a48-83ff87d0c7e7","managed":false,"name":"test-acc-scaleway-iam-policy-6431857504774278413","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","tags":[],"updated_at":"2025-10-27T14:15:55.444120Z"}' - headers: - Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8778b8bb-7b8b-4871-8859-d980e6bb5654 - status: 200 OK - code: 200 - duration: 50.944894ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies?order_by=policy_name_asc&organization_id=57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e&policy_name=test-acc-scaleway-iam-policy-6431857504774278413 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"policies":[{"application_id":"7b1feb71-adc1-4566-b05d-2c324a06a51f","created_at":"2025-10-27T14:15:55.444120Z","deletable":true,"description":"","editable":true,"id":"8505e513-abf5-4bb2-8a48-83ff87d0c7e7","managed":false,"name":"test-acc-scaleway-iam-policy-6431857504774278413","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","tags":[],"updated_at":"2025-10-27T14:15:55.444120Z"}],"total_count":1}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dfbd829e-8a88-4a55-8b54-8a0173ab58d5 - status: 200 OK - code: 200 - duration: 67.98769ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=8505e513-abf5-4bb2-8a48-83ff87d0c7e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 232 - uncompressed: false - body: '{"rules":[{"condition":"","id":"8284e980-a693-43d2-9b3f-6db845e72f30","organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","permission_set_names":["IAMManager"],"permission_sets_scope_type":"organization"}],"total_count":1}' - headers: - Content-Length: - - "232" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 90b4835a-72b7-4963-886d-d8a0aebb5d5b - status: 200 OK - code: 200 - duration: 58.110337ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/8505e513-abf5-4bb2-8a48-83ff87d0c7e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - body: '{"application_id":"7b1feb71-adc1-4566-b05d-2c324a06a51f","created_at":"2025-10-27T14:15:55.444120Z","deletable":true,"description":"","editable":true,"id":"8505e513-abf5-4bb2-8a48-83ff87d0c7e7","managed":false,"name":"test-acc-scaleway-iam-policy-6431857504774278413","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","tags":[],"updated_at":"2025-10-27T14:15:55.444120Z"}' - headers: - Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cae3484e-6c7d-4da3-a61f-f4aa700520c2 - status: 200 OK - code: 200 - duration: 112.900091ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=8505e513-abf5-4bb2-8a48-83ff87d0c7e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 232 - uncompressed: false - body: '{"rules":[{"condition":"","id":"8284e980-a693-43d2-9b3f-6db845e72f30","organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","permission_set_names":["IAMManager"],"permission_sets_scope_type":"organization"}],"total_count":1}' - headers: - Content-Length: - - "232" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 230d45da-3588-46e0-b81f-260f5a8f274e - status: 200 OK - code: 200 - duration: 68.807985ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies?order_by=policy_name_asc&organization_id=57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e&policy_name=test-acc-scaleway-iam-policy-6431857504774278413 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"policies":[{"application_id":"7b1feb71-adc1-4566-b05d-2c324a06a51f","created_at":"2025-10-27T14:15:55.444120Z","deletable":true,"description":"","editable":true,"id":"8505e513-abf5-4bb2-8a48-83ff87d0c7e7","managed":false,"name":"test-acc-scaleway-iam-policy-6431857504774278413","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","tags":[],"updated_at":"2025-10-27T14:15:55.444120Z"}],"total_count":1}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 74bf3c07-1d27-48fb-86fe-8125d687d0f5 - status: 200 OK - code: 200 - duration: 58.556989ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/8505e513-abf5-4bb2-8a48-83ff87d0c7e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - body: '{"application_id":"7b1feb71-adc1-4566-b05d-2c324a06a51f","created_at":"2025-10-27T14:15:55.444120Z","deletable":true,"description":"","editable":true,"id":"8505e513-abf5-4bb2-8a48-83ff87d0c7e7","managed":false,"name":"test-acc-scaleway-iam-policy-6431857504774278413","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","tags":[],"updated_at":"2025-10-27T14:15:55.444120Z"}' - headers: - Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 673cc1dc-1321-4d43-beb1-a19da8f87678 - status: 200 OK - code: 200 - duration: 111.346835ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/8505e513-abf5-4bb2-8a48-83ff87d0c7e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - body: '{"application_id":"7b1feb71-adc1-4566-b05d-2c324a06a51f","created_at":"2025-10-27T14:15:55.444120Z","deletable":true,"description":"","editable":true,"id":"8505e513-abf5-4bb2-8a48-83ff87d0c7e7","managed":false,"name":"test-acc-scaleway-iam-policy-6431857504774278413","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","tags":[],"updated_at":"2025-10-27T14:15:55.444120Z"}' - headers: - Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 72f55564-e16b-4882-98e0-a3da86d68f9b - status: 200 OK - code: 200 - duration: 107.716057ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=8505e513-abf5-4bb2-8a48-83ff87d0c7e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 232 - uncompressed: false - body: '{"rules":[{"condition":"","id":"8284e980-a693-43d2-9b3f-6db845e72f30","organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","permission_set_names":["IAMManager"],"permission_sets_scope_type":"organization"}],"total_count":1}' - headers: - Content-Length: - - "232" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b8b0da6c-21af-4916-b7a0-f0ff0b7aaa0a - status: 200 OK - code: 200 - duration: 117.822352ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=8505e513-abf5-4bb2-8a48-83ff87d0c7e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 232 - uncompressed: false - body: '{"rules":[{"condition":"","id":"8284e980-a693-43d2-9b3f-6db845e72f30","organization_id":"57a1e028-d7d3-4a4e-80cf-52cef8fd0d3e","permission_set_names":["IAMManager"],"permission_sets_scope_type":"organization"}],"total_count":1}' - headers: - Content-Length: - - "232" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8005b97f-3e89-42e2-bc35-b374c16c4c42 - status: 200 OK - code: 200 - duration: 120.280175ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWDBJTHDD5F2E0N5S2T - 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: - - Mon, 27 Oct 2025 14:15:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 135901c2-7613-466b-9f66-1ab6b9dcad3d - status: 204 No Content - code: 204 - duration: 71.770322ms - - id: 22 - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/8505e513-abf5-4bb2-8a48-83ff87d0c7e7 - 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: - - Mon, 27 Oct 2025 14:15:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1b759ea6-107f-4a36-925c-a5119a3a1cf0 - status: 204 No Content - code: 204 - duration: 84.187215ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/7b1feb71-adc1-4566-b05d-2c324a06a51f - 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: - - Mon, 27 Oct 2025 14:15:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 09edfdae-91f6-49b7-af3a-51aa5fffb62b - status: 204 No Content - code: 204 - duration: 66.160489ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/20489b31-1589-4ef8-b7f1-d56854c56311 - 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: - - Mon, 27 Oct 2025 14:15:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e68a0a3b-550d-442e-aae5-2d8ac3048b9d - status: 204 No Content - code: 204 - duration: 1.970445254s - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/8505e513-abf5-4bb2-8a48-83ff87d0c7e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"policy","resource_id":"8505e513-abf5-4bb2-8a48-83ff87d0c7e7","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1840f2f6-a32d-4db4-b33d-d034ac4e210c - status: 404 Not Found - code: 404 - duration: 45.94281ms - - 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.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/8505e513-abf5-4bb2-8a48-83ff87d0c7e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"policy","resource_id":"8505e513-abf5-4bb2-8a48-83ff87d0c7e7","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:15:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f5bb6c2e-8ce5-4a60-a7a5-703a3e4d8d62 - status: 404 Not Found - code: 404 - duration: 38.662277ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 130 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-project-4002164856983285327\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 287 + body: "{\"id\":\"ba67069e-f779-4b6e-8055-36a7ee747d2f\", \"name\":\"test-acc-scaleway-project-4002164856983285327\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:19.754740Z\", \"updated_at\":\"2025-11-17T17:10:19.754740Z\", \"description\":\"\", \"qualification\":null}" + headers: + Content-Length: + - "287" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:20 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c060be4b-c7bc-437c-a939-791d53bfafc2 + status: 200 OK + code: 200 + duration: 624.345998ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 142 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-iam-app-8877819354400980890\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":null}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 345 + body: "{\"id\":\"78650357-874b-42a3-adca-d44a759104f0\", \"name\":\"test-acc-scaleway-iam-app-8877819354400980890\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:20.180705Z\", \"updated_at\":\"2025-11-17T17:10:20.180705Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "345" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:20 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3cc3e95b-67d9-4de8-8de1-08e1d8a95383 + status: 200 OK + code: 200 + duration: 175.634456ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 323 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-iam-policy-4451882000619450660\",\"description\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"rules\":[{\"permission_set_names\":[\"IAMManager\"],\"condition\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}],\"tags\":null,\"application_id\":\"78650357-874b-42a3-adca-d44a759104f0\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"id\":\"aa3c0000-99b6-4539-aa61-21e71f8392ca\", \"name\":\"test-acc-scaleway-iam-policy-4451882000619450660\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:20.433947Z\", \"updated_at\":\"2025-11-17T17:10:20.433947Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":0, \"nb_scopes\":0, \"nb_permission_sets\":0, \"tags\":[], \"application_id\":\"78650357-874b-42a3-adca-d44a759104f0\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:20 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 32f4fd52-12f4-4946-ac0e-2afd03968d17 + status: 200 OK + code: 200 + duration: 336.34802ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 134 + host: api.scaleway.com + body: "{\"application_id\":\"78650357-874b-42a3-adca-d44a759104f0\",\"default_project_id\":\"ba67069e-f779-4b6e-8055-36a7ee747d2f\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 416 + body: "{\"access_key\":\"SCWKE42M3BJM7W0XEGZP\", \"secret_key\":\"11111111-1111-1111-1111-111111111111\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:20.729620Z\", \"updated_at\":\"2025-11-17T17:10:20.729620Z\", \"expires_at\":null, \"default_project_id\":\"ba67069e-f779-4b6e-8055-36a7ee747d2f\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"78650357-874b-42a3-adca-d44a759104f0\"}" + headers: + Content-Length: + - "416" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:20 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 20f101eb-0e27-427f-9d8f-96a3283176b4 + status: 200 OK + code: 200 + duration: 241.967316ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - policy_name_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + policy_name: + - test-acc-scaleway-iam-policy-4451882000619450660 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies?order_by=policy_name_asc&organization_id=11111111-1111-1111-1111-111111111111&policy_name=test-acc-scaleway-iam-policy-4451882000619450660 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"policies\":[{\"id\":\"aa3c0000-99b6-4539-aa61-21e71f8392ca\", \"name\":\"test-acc-scaleway-iam-policy-4451882000619450660\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:20.433947Z\", \"updated_at\":\"2025-11-17T17:10:20.433947Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"application_id\":\"78650357-874b-42a3-adca-d44a759104f0\"}], \"total_count\":1}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5e3d4017-a6e7-4e41-96b0-7a3c5cbfadd1 + status: 200 OK + code: 200 + duration: 155.70745ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/aa3c0000-99b6-4539-aa61-21e71f8392ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"id\":\"aa3c0000-99b6-4539-aa61-21e71f8392ca\", \"name\":\"test-acc-scaleway-iam-policy-4451882000619450660\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:20.433947Z\", \"updated_at\":\"2025-11-17T17:10:20.433947Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"application_id\":\"78650357-874b-42a3-adca-d44a759104f0\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3bc441cc-3cde-4881-9921-e4344733bc79 + status: 200 OK + code: 200 + duration: 169.051364ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/aa3c0000-99b6-4539-aa61-21e71f8392ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"id\":\"aa3c0000-99b6-4539-aa61-21e71f8392ca\", \"name\":\"test-acc-scaleway-iam-policy-4451882000619450660\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:20.433947Z\", \"updated_at\":\"2025-11-17T17:10:20.433947Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"application_id\":\"78650357-874b-42a3-adca-d44a759104f0\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 27f925bf-b894-4829-bf87-155e89e197ea + status: 200 OK + code: 200 + duration: 175.261902ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - aa3c0000-99b6-4539-aa61-21e71f8392ca + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=aa3c0000-99b6-4539-aa61-21e71f8392ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 232 + body: "{\"rules\":[{\"id\":\"a0c029aa-ec83-4729-8be3-013ff00e13b2\", \"permission_set_names\":[\"IAMManager\"], \"permission_sets_scope_type\":\"organization\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "232" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9845c8ff-aee7-4d91-9e02-067910d60d3c + status: 200 OK + code: 200 + duration: 208.489256ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - aa3c0000-99b6-4539-aa61-21e71f8392ca + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=aa3c0000-99b6-4539-aa61-21e71f8392ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 232 + body: "{\"rules\":[{\"id\":\"a0c029aa-ec83-4729-8be3-013ff00e13b2\", \"permission_set_names\":[\"IAMManager\"], \"permission_sets_scope_type\":\"organization\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "232" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e8eb7cc1-8dd3-44ff-b090-0929dd6c5420 + status: 200 OK + code: 200 + duration: 168.562212ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/aa3c0000-99b6-4539-aa61-21e71f8392ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"id\":\"aa3c0000-99b6-4539-aa61-21e71f8392ca\", \"name\":\"test-acc-scaleway-iam-policy-4451882000619450660\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:20.433947Z\", \"updated_at\":\"2025-11-17T17:10:20.433947Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"application_id\":\"78650357-874b-42a3-adca-d44a759104f0\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 63b07ff2-6aa9-4638-aab8-9c122cd12837 + status: 200 OK + code: 200 + duration: 66.753617ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/aa3c0000-99b6-4539-aa61-21e71f8392ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"id\":\"aa3c0000-99b6-4539-aa61-21e71f8392ca\", \"name\":\"test-acc-scaleway-iam-policy-4451882000619450660\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:20.433947Z\", \"updated_at\":\"2025-11-17T17:10:20.433947Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"application_id\":\"78650357-874b-42a3-adca-d44a759104f0\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 201034b1-7959-498c-94c7-635de851ba6b + status: 200 OK + code: 200 + duration: 167.120592ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - policy_name_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + policy_name: + - test-acc-scaleway-iam-policy-4451882000619450660 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies?order_by=policy_name_asc&organization_id=11111111-1111-1111-1111-111111111111&policy_name=test-acc-scaleway-iam-policy-4451882000619450660 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"policies\":[{\"id\":\"aa3c0000-99b6-4539-aa61-21e71f8392ca\", \"name\":\"test-acc-scaleway-iam-policy-4451882000619450660\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:20.433947Z\", \"updated_at\":\"2025-11-17T17:10:20.433947Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"application_id\":\"78650357-874b-42a3-adca-d44a759104f0\"}], \"total_count\":1}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0535f06d-0dbd-4568-9193-c870396bc368 + status: 200 OK + code: 200 + duration: 59.821487ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/aa3c0000-99b6-4539-aa61-21e71f8392ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"id\":\"aa3c0000-99b6-4539-aa61-21e71f8392ca\", \"name\":\"test-acc-scaleway-iam-policy-4451882000619450660\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:20.433947Z\", \"updated_at\":\"2025-11-17T17:10:20.433947Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"application_id\":\"78650357-874b-42a3-adca-d44a759104f0\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 48fa984d-a5f9-424a-9a26-4e4addc9939c + status: 200 OK + code: 200 + duration: 60.670389ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/aa3c0000-99b6-4539-aa61-21e71f8392ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"id\":\"aa3c0000-99b6-4539-aa61-21e71f8392ca\", \"name\":\"test-acc-scaleway-iam-policy-4451882000619450660\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:20.433947Z\", \"updated_at\":\"2025-11-17T17:10:20.433947Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"application_id\":\"78650357-874b-42a3-adca-d44a759104f0\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9ac7e8e6-6ea6-4b07-85c8-d1948c1cc116 + status: 200 OK + code: 200 + duration: 112.781611ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - aa3c0000-99b6-4539-aa61-21e71f8392ca + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=aa3c0000-99b6-4539-aa61-21e71f8392ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 232 + body: "{\"rules\":[{\"id\":\"a0c029aa-ec83-4729-8be3-013ff00e13b2\", \"permission_set_names\":[\"IAMManager\"], \"permission_sets_scope_type\":\"organization\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "232" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7c4139f1-a194-45ce-9509-92b6837d3303 + status: 200 OK + code: 200 + duration: 98.249003ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - aa3c0000-99b6-4539-aa61-21e71f8392ca + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=aa3c0000-99b6-4539-aa61-21e71f8392ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 232 + body: "{\"rules\":[{\"id\":\"a0c029aa-ec83-4729-8be3-013ff00e13b2\", \"permission_set_names\":[\"IAMManager\"], \"permission_sets_scope_type\":\"organization\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "232" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d8f0bdfc-9b1d-472d-a0d7-7759e9475546 + status: 200 OK + code: 200 + duration: 294.200173ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - policy_name_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + policy_name: + - test-acc-scaleway-iam-policy-4451882000619450660 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies?order_by=policy_name_asc&organization_id=11111111-1111-1111-1111-111111111111&policy_name=test-acc-scaleway-iam-policy-4451882000619450660 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"policies\":[{\"id\":\"aa3c0000-99b6-4539-aa61-21e71f8392ca\", \"name\":\"test-acc-scaleway-iam-policy-4451882000619450660\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:20.433947Z\", \"updated_at\":\"2025-11-17T17:10:20.433947Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"application_id\":\"78650357-874b-42a3-adca-d44a759104f0\"}], \"total_count\":1}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1e2dfa14-0c12-49ff-b97c-459cfa1d59f1 + status: 200 OK + code: 200 + duration: 90.789611ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/aa3c0000-99b6-4539-aa61-21e71f8392ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"id\":\"aa3c0000-99b6-4539-aa61-21e71f8392ca\", \"name\":\"test-acc-scaleway-iam-policy-4451882000619450660\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:20.433947Z\", \"updated_at\":\"2025-11-17T17:10:20.433947Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"application_id\":\"78650357-874b-42a3-adca-d44a759104f0\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 00e9a0e5-4acd-4a86-9508-e68156a63ba5 + status: 200 OK + code: 200 + duration: 110.829218ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/aa3c0000-99b6-4539-aa61-21e71f8392ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"id\":\"aa3c0000-99b6-4539-aa61-21e71f8392ca\", \"name\":\"test-acc-scaleway-iam-policy-4451882000619450660\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:20.433947Z\", \"updated_at\":\"2025-11-17T17:10:20.433947Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"application_id\":\"78650357-874b-42a3-adca-d44a759104f0\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2ed424ed-de86-4eaf-a32f-7d68e49a5556 + status: 200 OK + code: 200 + duration: 211.466357ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - aa3c0000-99b6-4539-aa61-21e71f8392ca + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=aa3c0000-99b6-4539-aa61-21e71f8392ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 232 + body: "{\"rules\":[{\"id\":\"a0c029aa-ec83-4729-8be3-013ff00e13b2\", \"permission_set_names\":[\"IAMManager\"], \"permission_sets_scope_type\":\"organization\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "232" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 165bcc30-309b-4786-8c68-556047523fc6 + status: 200 OK + code: 200 + duration: 145.495281ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - aa3c0000-99b6-4539-aa61-21e71f8392ca + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=aa3c0000-99b6-4539-aa61-21e71f8392ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 232 + body: "{\"rules\":[{\"id\":\"a0c029aa-ec83-4729-8be3-013ff00e13b2\", \"permission_set_names\":[\"IAMManager\"], \"permission_sets_scope_type\":\"organization\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "232" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 32fac2f9-ce7e-494b-8c04-f873c9711d42 + status: 200 OK + code: 200 + duration: 180.21578ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 19066e20-0982-4537-8616-8c4ff9daf860 + status: 204 No Content + code: 204 + duration: 197.934038ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/aa3c0000-99b6-4539-aa61-21e71f8392ca + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8c983ffc-de42-4dda-879e-9b2772d984fd + status: 204 No Content + code: 204 + duration: 166.877219ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/78650357-874b-42a3-adca-d44a759104f0 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e8a10c95-987c-4c46-b92b-3f1f6987c832 + status: 204 No Content + code: 204 + duration: 156.278904ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/ba67069e-f779-4b6e-8055-36a7ee747d2f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 60bbb803-241c-4fa8-9583-c26d70ae897d + status: 204 No Content + code: 204 + duration: 1.437531553s +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/aa3c0000-99b6-4539-aa61-21e71f8392ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"policy\",\"resource_id\":\"aa3c0000-99b6-4539-aa61-21e71f8392ca\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 04fba73f-cc5b-4005-8612-7712ce553bd1 + status: 404 Not Found + code: 404 + duration: 40.275115ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/aa3c0000-99b6-4539-aa61-21e71f8392ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"policy\",\"resource_id\":\"aa3c0000-99b6-4539-aa61-21e71f8392ca\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 93160fe6-f0bb-4b15-9449-2e013435a28b + status: 404 Not Found + code: 404 + duration: 89.996251ms diff --git a/internal/services/iam/testdata/data-source-ssh-key-basic.cassette.yaml b/internal/services/iam/testdata/data-source-ssh-key-basic.cassette.yaml index c790d639e..48d33525a 100644 --- a/internal/services/iam/testdata/data-source-ssh-key-basic.cassette.yaml +++ b/internal/services/iam/testdata/data-source-ssh-key-basic.cassette.yaml @@ -1,983 +1,659 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 206 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-test-ds-iam-ssh-key-basic","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ foobar@example.com","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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 477 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:35.108992Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"c23d2557-f452-4877-90ce-7756fcb4d727","name":"tf-test-ds-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-09-05T14:01:35.108992Z"}' - headers: - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4e91e1a9-ad50-4158-b9fe-78116d5eaf8f - status: 200 OK - code: 200 - duration: 534.585667ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/c23d2557-f452-4877-90ce-7756fcb4d727 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 477 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:35.108992Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"c23d2557-f452-4877-90ce-7756fcb4d727","name":"tf-test-ds-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-09-05T14:01:35.108992Z"}' - headers: - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 84c5da3b-a151-435e-8d64-852e4dd776f5 - status: 200 OK - code: 200 - duration: 169.464334ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/c23d2557-f452-4877-90ce-7756fcb4d727 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 477 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:35.108992Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"c23d2557-f452-4877-90ce-7756fcb4d727","name":"tf-test-ds-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-09-05T14:01:35.108992Z"}' - headers: - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 504ec451-3b2b-4dd7-b6cc-e4f0ca2a9775 - status: 200 OK - code: 200 - duration: 142.818041ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/c23d2557-f452-4877-90ce-7756fcb4d727 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 477 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:35.108992Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"c23d2557-f452-4877-90ce-7756fcb4d727","name":"tf-test-ds-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-09-05T14:01:35.108992Z"}' - headers: - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fbcf29e7-03cc-486a-8962-36614472a8c0 - status: 200 OK - code: 200 - duration: 170.1915ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/c23d2557-f452-4877-90ce-7756fcb4d727 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 477 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:35.108992Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"c23d2557-f452-4877-90ce-7756fcb4d727","name":"tf-test-ds-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-09-05T14:01:35.108992Z"}' - headers: - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 14d531e7-2773-4259-ac8b-040beb07e87b - status: 200 OK - code: 200 - duration: 146.537958ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys?name=tf-test-ds-iam-ssh-key-basic&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 508 - uncompressed: false - body: '{"ssh_keys":[{"created_at":"2025-09-05T14:01:35.108992Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"c23d2557-f452-4877-90ce-7756fcb4d727","name":"tf-test-ds-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-09-05T14:01:35.108992Z"}],"total_count":1}' - headers: - Content-Length: - - "508" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - eb0e92c5-1ae8-4ad5-825e-f0781bf8e4f9 - status: 200 OK - code: 200 - duration: 156.97125ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/c23d2557-f452-4877-90ce-7756fcb4d727 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 477 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:35.108992Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"c23d2557-f452-4877-90ce-7756fcb4d727","name":"tf-test-ds-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-09-05T14:01:35.108992Z"}' - headers: - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f10dd81d-564f-40da-b174-b5a191461aa0 - status: 200 OK - code: 200 - duration: 151.6345ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/c23d2557-f452-4877-90ce-7756fcb4d727 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 477 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:35.108992Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"c23d2557-f452-4877-90ce-7756fcb4d727","name":"tf-test-ds-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-09-05T14:01:35.108992Z"}' - headers: - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 30f131df-b03d-473e-a71d-5597c2e4a245 - status: 200 OK - code: 200 - duration: 148.501542ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/c23d2557-f452-4877-90ce-7756fcb4d727 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 477 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:35.108992Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"c23d2557-f452-4877-90ce-7756fcb4d727","name":"tf-test-ds-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-09-05T14:01:35.108992Z"}' - headers: - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 92cd9771-a362-4cc7-b8dd-d1f14a2515e1 - status: 200 OK - code: 200 - duration: 148.779875ms - - id: 9 - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/c23d2557-f452-4877-90ce-7756fcb4d727 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 477 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:35.108992Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"c23d2557-f452-4877-90ce-7756fcb4d727","name":"tf-test-ds-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-09-05T14:01:35.108992Z"}' - headers: - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fbe437b2-7601-4e24-a4a7-0cde698e44e0 - status: 200 OK - code: 200 - duration: 152.398125ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys?name=tf-test-ds-iam-ssh-key-basic&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 508 - uncompressed: false - body: '{"ssh_keys":[{"created_at":"2025-09-05T14:01:35.108992Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"c23d2557-f452-4877-90ce-7756fcb4d727","name":"tf-test-ds-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-09-05T14:01:35.108992Z"}],"total_count":1}' - headers: - Content-Length: - - "508" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 824cfbb1-cc08-4ce7-b510-5f7883a939a6 - status: 200 OK - code: 200 - duration: 168.061333ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/c23d2557-f452-4877-90ce-7756fcb4d727 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 477 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:35.108992Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"c23d2557-f452-4877-90ce-7756fcb4d727","name":"tf-test-ds-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-09-05T14:01:35.108992Z"}' - headers: - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9c5d1f78-8188-4039-8872-c9211dc1b23f - status: 200 OK - code: 200 - duration: 170.87375ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/c23d2557-f452-4877-90ce-7756fcb4d727 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 477 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:35.108992Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"c23d2557-f452-4877-90ce-7756fcb4d727","name":"tf-test-ds-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-09-05T14:01:35.108992Z"}' - headers: - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 525121aa-7e73-4d12-b5be-9d7cda651b2c - status: 200 OK - code: 200 - duration: 160.599708ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/c23d2557-f452-4877-90ce-7756fcb4d727 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 477 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:35.108992Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"c23d2557-f452-4877-90ce-7756fcb4d727","name":"tf-test-ds-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-09-05T14:01:35.108992Z"}' - headers: - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5daa97b7-4822-4878-8af2-f250d11ab733 - status: 200 OK - code: 200 - duration: 141.520708ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys?name=tf-test-ds-iam-ssh-key-basic&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 508 - uncompressed: false - body: '{"ssh_keys":[{"created_at":"2025-09-05T14:01:35.108992Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"c23d2557-f452-4877-90ce-7756fcb4d727","name":"tf-test-ds-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-09-05T14:01:35.108992Z"}],"total_count":1}' - headers: - Content-Length: - - "508" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 25e0fd7a-5978-49be-ab84-fb1ec46dffe1 - status: 200 OK - code: 200 - duration: 144.513209ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/c23d2557-f452-4877-90ce-7756fcb4d727 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 477 - uncompressed: false - body: '{"created_at":"2025-09-05T14:01:35.108992Z","disabled":false,"fingerprint":"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)","id":"c23d2557-f452-4877-90ce-7756fcb4d727","name":"tf-test-ds-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ","updated_at":"2025-09-05T14:01:35.108992Z"}' - headers: - Content-Length: - - "477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b6e9b829-3683-4e08-9686-5c5dc2a239bd - status: 200 OK - code: 200 - duration: 145.931875ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/c23d2557-f452-4877-90ce-7756fcb4d727 - 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, 05 Sep 2025 14:01:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d288f733-a76c-489e-a79f-f70322de144b - status: 204 No Content - code: 204 - duration: 183.479792ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/c23d2557-f452-4877-90ce-7756fcb4d727 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 128 - uncompressed: false - body: '{"message":"resource is not found","resource":"ssh_key","resource_id":"c23d2557-f452-4877-90ce-7756fcb4d727","type":"not_found"}' - headers: - Content-Length: - - "128" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 82f28dd0-7e00-4058-b9d3-9934bc81dd51 - status: 404 Not Found - code: 404 - duration: 54.618083ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/c23d2557-f452-4877-90ce-7756fcb4d727 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 128 - uncompressed: false - body: '{"message":"resource is not found","resource":"ssh_key","resource_id":"c23d2557-f452-4877-90ce-7756fcb4d727","type":"not_found"}' - headers: - Content-Length: - - "128" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a08e0006-b97d-4860-bd86-c1e9cbddcd10 - status: 404 Not Found - code: 404 - duration: 58.060708ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/c23d2557-f452-4877-90ce-7756fcb4d727 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 128 - uncompressed: false - body: '{"message":"resource is not found","resource":"ssh_key","resource_id":"c23d2557-f452-4877-90ce-7756fcb4d727","type":"not_found"}' - headers: - Content-Length: - - "128" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:01:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5946a833-2b04-4550-bffb-f1f699c11c2a - status: 404 Not Found - code: 404 - duration: 59.846458ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 206 + host: api.scaleway.com + body: "{\"name\":\"tf-test-ds-iam-ssh-key-basic\",\"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ foobar@example.com\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\", \"name\":\"tf-test-ds-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:30.432712Z\", \"updated_at\":\"2025-11-17T17:10:30.432712Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8c9e2977-d623-420c-8766-6f86fabb4c1f + status: 200 OK + code: 200 + duration: 197.570954ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/fd9310a4-90ca-4efa-b3a2-0797915a5f93 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\", \"name\":\"tf-test-ds-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:30.432712Z\", \"updated_at\":\"2025-11-17T17:10:30.432712Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 185fcab2-3c43-4f63-a01e-9a7c857eccab + status: 200 OK + code: 200 + duration: 85.043682ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/fd9310a4-90ca-4efa-b3a2-0797915a5f93 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\", \"name\":\"tf-test-ds-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:30.432712Z\", \"updated_at\":\"2025-11-17T17:10:30.432712Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f41a6057-6981-4b6d-aa16-36dfcf246a97 + status: 200 OK + code: 200 + duration: 87.368823ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/fd9310a4-90ca-4efa-b3a2-0797915a5f93 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\", \"name\":\"tf-test-ds-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:30.432712Z\", \"updated_at\":\"2025-11-17T17:10:30.432712Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ca9373c0-c1da-4a4c-8fb4-1276a5548920 + status: 200 OK + code: 200 + duration: 134.569901ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf-test-ds-iam-ssh-key-basic + order_by: + - created_at_asc + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys?name=tf-test-ds-iam-ssh-key-basic&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 517 + body: "{\"ssh_keys\":[{\"id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\", \"name\":\"tf-test-ds-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:30.432712Z\", \"updated_at\":\"2025-11-17T17:10:30.432712Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}], \"total_count\":1}" + headers: + Content-Length: + - "517" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e9168fff-a3ed-4634-beb1-38527b44334e + status: 200 OK + code: 200 + duration: 144.984505ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/fd9310a4-90ca-4efa-b3a2-0797915a5f93 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\", \"name\":\"tf-test-ds-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:30.432712Z\", \"updated_at\":\"2025-11-17T17:10:30.432712Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0a33fc82-bac6-41ee-84d3-5e5f782da43d + status: 200 OK + code: 200 + duration: 145.029288ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/fd9310a4-90ca-4efa-b3a2-0797915a5f93 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\", \"name\":\"tf-test-ds-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:30.432712Z\", \"updated_at\":\"2025-11-17T17:10:30.432712Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e35db39f-782c-4f0b-b8dc-f20911c023ee + status: 200 OK + code: 200 + duration: 81.881543ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/fd9310a4-90ca-4efa-b3a2-0797915a5f93 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\", \"name\":\"tf-test-ds-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:30.432712Z\", \"updated_at\":\"2025-11-17T17:10:30.432712Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0361966e-6b8b-47ad-a263-b0b2745a36de + status: 200 OK + code: 200 + duration: 43.354048ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/fd9310a4-90ca-4efa-b3a2-0797915a5f93 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\", \"name\":\"tf-test-ds-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:30.432712Z\", \"updated_at\":\"2025-11-17T17:10:30.432712Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b4563aa6-6914-4f47-9701-2694644abc73 + status: 200 OK + code: 200 + duration: 94.698955ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/fd9310a4-90ca-4efa-b3a2-0797915a5f93 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\", \"name\":\"tf-test-ds-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:30.432712Z\", \"updated_at\":\"2025-11-17T17:10:30.432712Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ba466633-aece-4d9a-849d-e4c99e959e8c + status: 200 OK + code: 200 + duration: 71.53309ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf-test-ds-iam-ssh-key-basic + order_by: + - created_at_asc + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys?name=tf-test-ds-iam-ssh-key-basic&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 517 + body: "{\"ssh_keys\":[{\"id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\", \"name\":\"tf-test-ds-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:30.432712Z\", \"updated_at\":\"2025-11-17T17:10:30.432712Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}], \"total_count\":1}" + headers: + Content-Length: + - "517" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3cfc9022-9a6a-4230-9cc3-a02740ef9d73 + status: 200 OK + code: 200 + duration: 81.591606ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/fd9310a4-90ca-4efa-b3a2-0797915a5f93 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\", \"name\":\"tf-test-ds-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:30.432712Z\", \"updated_at\":\"2025-11-17T17:10:30.432712Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2f318338-15d8-421a-93a0-ed1a327544e3 + status: 200 OK + code: 200 + duration: 104.419186ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/fd9310a4-90ca-4efa-b3a2-0797915a5f93 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\", \"name\":\"tf-test-ds-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:30.432712Z\", \"updated_at\":\"2025-11-17T17:10:30.432712Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2eb2919c-5c24-43ec-ae4b-2e5518092b1f + status: 200 OK + code: 200 + duration: 86.697667ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/fd9310a4-90ca-4efa-b3a2-0797915a5f93 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\", \"name\":\"tf-test-ds-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:30.432712Z\", \"updated_at\":\"2025-11-17T17:10:30.432712Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 96ac3dfa-aab4-4735-a0ec-0c1ad0cd0e84 + status: 200 OK + code: 200 + duration: 79.762993ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf-test-ds-iam-ssh-key-basic + order_by: + - created_at_asc + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys?name=tf-test-ds-iam-ssh-key-basic&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 517 + body: "{\"ssh_keys\":[{\"id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\", \"name\":\"tf-test-ds-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:30.432712Z\", \"updated_at\":\"2025-11-17T17:10:30.432712Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}], \"total_count\":1}" + headers: + Content-Length: + - "517" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ba461658-359a-4653-b8f6-36ee05d37e12 + status: 200 OK + code: 200 + duration: 121.028178ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/fd9310a4-90ca-4efa-b3a2-0797915a5f93 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\", \"name\":\"tf-test-ds-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ\", \"fingerprint\":\"256 MD5:fd:2d:1c:d2:34:96:3f:8d:de:19:1e:da:f5:c1:05:7d (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:30.432712Z\", \"updated_at\":\"2025-11-17T17:10:30.432712Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 51534ca6-513d-45f0-a226-3d0b2a1f2f25 + status: 200 OK + code: 200 + duration: 138.955375ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/fd9310a4-90ca-4efa-b3a2-0797915a5f93 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 88a6e93d-9914-404e-aa4d-eadf15b47c7e + status: 204 No Content + code: 204 + duration: 111.713994ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/fd9310a4-90ca-4efa-b3a2-0797915a5f93 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: "{\"message\":\"resource is not found\",\"resource\":\"ssh_key\",\"resource_id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - cefd924a-fecd-4dbe-af2e-ded168d4f28f + status: 404 Not Found + code: 404 + duration: 64.093122ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/fd9310a4-90ca-4efa-b3a2-0797915a5f93 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: "{\"message\":\"resource is not found\",\"resource\":\"ssh_key\",\"resource_id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 714f7d2b-dd58-4bf4-bdba-6fc456ff50d0 + status: 404 Not Found + code: 404 + duration: 38.017082ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/fd9310a4-90ca-4efa-b3a2-0797915a5f93 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: "{\"message\":\"resource is not found\",\"resource\":\"ssh_key\",\"resource_id\":\"fd9310a4-90ca-4efa-b3a2-0797915a5f93\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3e6aed0c-68b3-4b0a-bebd-da9fec5aff29 + status: 404 Not Found + code: 404 + duration: 54.338828ms diff --git a/internal/services/iam/testdata/data-source-user-basic.cassette.yaml b/internal/services/iam/testdata/data-source-user-basic.cassette.yaml index 3fe2097a9..e21916f4f 100644 --- a/internal/services/iam/testdata/data-source-user-basic.cassette.yaml +++ b/internal/services/iam/testdata/data-source-user-basic.cassette.yaml @@ -1,738 +1,415 @@ --- 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users?order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf&page=1&type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 4661 - uncompressed: false - body: '{"total_count":8,"users":[{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","first_name":"","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","last_name":"","locale":"fr_FR","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-03-05T14:31:18.088783Z","username":"hashicorp@scaleway.com"},{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","first_name":"Developper Tools","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"last_name":"TEAM","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-03-05T14:30:40.167634Z","username":"developer-tools-team@scaleway.com"},{"account_root_user_id":"d80e9d9c-f77f-45f6-9bf0-74046ee2b135","created_at":"2024-01-17T13:14:30.940996Z","deletable":true,"email":"jremy@scaleway.com","first_name":"Jonathan","id":"ee474852-1f90-4cc1-bad0-4a17998c51e7","last_login_at":"2025-06-11T08:20:21.331642Z","last_name":"REMY","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-06-11T08:20:21.326285Z","username":"jremy@scaleway.com"},{"account_root_user_id":"721f2fde-1a01-4854-822b-fcca5638d73e","created_at":"2024-01-18T09:30:48.009812Z","deletable":true,"email":"rleone@scaleway.com","first_name":"Rémy","id":"88b4dde1-f3d4-478a-a281-784d53399a30","last_login_at":"2025-05-28T14:08:22.095434Z","last_name":"LEONE","locale":"fr_FR","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33667564022","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-05-28T14:08:22.078996Z","username":"rleone@scaleway.com"},{"account_root_user_id":"9d6c7867-d571-46f2-b092-bf459d345fe0","created_at":"2024-01-18T09:33:00.754759Z","deletable":true,"email":"lmasson@scaleway.com","first_name":"Laure","id":"d8e03283-0413-4305-850a-4cbfc4caaba8","last_login_at":"2025-04-24T13:07:19.306154Z","last_name":"MASSON","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33646316333","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-04-24T13:07:19.295106Z","username":"lmasson@scaleway.com"},{"account_root_user_id":"4a76bd84-9e32-472b-85b5-bdf6a70b6239","created_at":"2024-04-10T13:53:57.102549Z","deletable":true,"email":"yfodil@scaleway.com","first_name":"Yacine","id":"a893a7b8-07d0-4258-b70b-b4b90d6c254d","last_login_at":"2025-06-02T07:53:19.475771Z","last_name":"FODIL","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-06-02T07:53:19.457135Z","username":"yfodil@scaleway.com"},{"account_root_user_id":"2a9a645f-b2ea-4441-872e-c9ce60d137e9","created_at":"2025-04-01T14:29:15.372836Z","deletable":true,"email":"lmarabese@scaleway.com","first_name":"Leïla","id":"29c74dc1-87e7-4c49-91a1-0ad5540ecdd7","last_login_at":"2025-06-11T08:20:22.151367Z","last_name":"MARABESE","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33648006380","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-06-11T08:20:22.147122Z","username":"lmarabese@scaleway.com"},{"account_root_user_id":"a4b0ffed-f500-4ea6-b469-51bbc7b2cb99","created_at":"2025-04-01T14:29:15.375406Z","deletable":true,"email":"gnoale@scaleway.com","first_name":"Guillaume","id":"e8acdc71-e1ee-4d39-b597-0cf4a3226f29","last_login_at":"2025-06-11T09:16:01.605815Z","last_name":"NOALE","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-06-11T09:16:01.600036Z","username":"gnoale@scaleway.com"}]}' - headers: - Content-Length: - - "4661" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:19:38 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: - - 8754c124-6cbb-4220-ad96-6f0ad6024cc6 - status: 200 OK - code: 200 - duration: 403.76525ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users?order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf&page=1&type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 4661 - uncompressed: false - body: '{"total_count":8,"users":[{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","first_name":"","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","last_name":"","locale":"fr_FR","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-03-05T14:31:18.088783Z","username":"hashicorp@scaleway.com"},{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","first_name":"Developper Tools","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"last_name":"TEAM","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-03-05T14:30:40.167634Z","username":"developer-tools-team@scaleway.com"},{"account_root_user_id":"d80e9d9c-f77f-45f6-9bf0-74046ee2b135","created_at":"2024-01-17T13:14:30.940996Z","deletable":true,"email":"jremy@scaleway.com","first_name":"Jonathan","id":"ee474852-1f90-4cc1-bad0-4a17998c51e7","last_login_at":"2025-06-11T08:20:21.331642Z","last_name":"REMY","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-06-11T08:20:21.326285Z","username":"jremy@scaleway.com"},{"account_root_user_id":"721f2fde-1a01-4854-822b-fcca5638d73e","created_at":"2024-01-18T09:30:48.009812Z","deletable":true,"email":"rleone@scaleway.com","first_name":"Rémy","id":"88b4dde1-f3d4-478a-a281-784d53399a30","last_login_at":"2025-05-28T14:08:22.095434Z","last_name":"LEONE","locale":"fr_FR","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33667564022","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-05-28T14:08:22.078996Z","username":"rleone@scaleway.com"},{"account_root_user_id":"9d6c7867-d571-46f2-b092-bf459d345fe0","created_at":"2024-01-18T09:33:00.754759Z","deletable":true,"email":"lmasson@scaleway.com","first_name":"Laure","id":"d8e03283-0413-4305-850a-4cbfc4caaba8","last_login_at":"2025-04-24T13:07:19.306154Z","last_name":"MASSON","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33646316333","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-04-24T13:07:19.295106Z","username":"lmasson@scaleway.com"},{"account_root_user_id":"4a76bd84-9e32-472b-85b5-bdf6a70b6239","created_at":"2024-04-10T13:53:57.102549Z","deletable":true,"email":"yfodil@scaleway.com","first_name":"Yacine","id":"a893a7b8-07d0-4258-b70b-b4b90d6c254d","last_login_at":"2025-06-02T07:53:19.475771Z","last_name":"FODIL","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-06-02T07:53:19.457135Z","username":"yfodil@scaleway.com"},{"account_root_user_id":"2a9a645f-b2ea-4441-872e-c9ce60d137e9","created_at":"2025-04-01T14:29:15.372836Z","deletable":true,"email":"lmarabese@scaleway.com","first_name":"Leïla","id":"29c74dc1-87e7-4c49-91a1-0ad5540ecdd7","last_login_at":"2025-06-11T08:20:22.151367Z","last_name":"MARABESE","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33648006380","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-06-11T08:20:22.147122Z","username":"lmarabese@scaleway.com"},{"account_root_user_id":"a4b0ffed-f500-4ea6-b469-51bbc7b2cb99","created_at":"2025-04-01T14:29:15.375406Z","deletable":true,"email":"gnoale@scaleway.com","first_name":"Guillaume","id":"e8acdc71-e1ee-4d39-b597-0cf4a3226f29","last_login_at":"2025-06-11T09:16:01.605815Z","last_name":"NOALE","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-06-11T09:16:01.600036Z","username":"gnoale@scaleway.com"}]}' - headers: - Content-Length: - - "4661" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:19:39 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: - - 338fe363-da6f-4314-b41d-302922366436 - status: 200 OK - code: 200 - duration: 131.223792ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 253 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"member":{"email":"foo@scaleway.com","send_password_email":false,"send_welcome_email":false,"username":"foo","password":"","first_name":"","last_name":"","phone_number":"","locale":""}}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 481 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:19:39.432800Z","deletable":true,"email":"foo@scaleway.com","first_name":"","id":"1ef9eeb8-ec54-4b8e-87d9-d5850a3df053","last_login_at":null,"last_name":"","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:19:39.432800Z","username":"foo"}' - headers: - Content-Length: - - "481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:19:39 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: - - f61445cd-62bc-484b-8108-4d3e091c06df - status: 200 OK - code: 200 - duration: 540.982375ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/1ef9eeb8-ec54-4b8e-87d9-d5850a3df053 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 481 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:19:39.432800Z","deletable":true,"email":"foo@scaleway.com","first_name":"","id":"1ef9eeb8-ec54-4b8e-87d9-d5850a3df053","last_login_at":null,"last_name":"","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:19:39.432800Z","username":"foo"}' - headers: - Content-Length: - - "481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:19:40 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: - - 1166931d-ae09-48a8-a41c-612fe7f172ea - status: 200 OK - code: 200 - duration: 236.778625ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/1ef9eeb8-ec54-4b8e-87d9-d5850a3df053 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 481 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:19:39.432800Z","deletable":true,"email":"foo@scaleway.com","first_name":"","id":"1ef9eeb8-ec54-4b8e-87d9-d5850a3df053","last_login_at":null,"last_name":"","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:19:39.432800Z","username":"foo"}' - headers: - Content-Length: - - "481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:19:40 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: - - e8de1883-bb13-4ad1-a6dc-b59a76a48e72 - status: 200 OK - code: 200 - duration: 153.079959ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/1ef9eeb8-ec54-4b8e-87d9-d5850a3df053 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 481 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:19:39.432800Z","deletable":true,"email":"foo@scaleway.com","first_name":"","id":"1ef9eeb8-ec54-4b8e-87d9-d5850a3df053","last_login_at":null,"last_name":"","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:19:39.432800Z","username":"foo"}' - headers: - Content-Length: - - "481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:19:40 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: - - 94d4dcf9-0d04-449c-ae01-c2b2efde9aee - status: 200 OK - code: 200 - duration: 127.282208ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 565 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","first_name":"","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","last_name":"","locale":"fr_FR","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-03-05T14:31:18.088783Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "565" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:19:40 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: - - 113ff7e6-427b-46e1-995b-861a6cef6731 - status: 200 OK - code: 200 - duration: 124.561458ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/1ef9eeb8-ec54-4b8e-87d9-d5850a3df053 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 481 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:19:39.432800Z","deletable":true,"email":"foo@scaleway.com","first_name":"","id":"1ef9eeb8-ec54-4b8e-87d9-d5850a3df053","last_login_at":null,"last_name":"","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:19:39.432800Z","username":"foo"}' - headers: - Content-Length: - - "481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:19:40 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: - - ad5f1dd4-a6b0-4a44-a22b-c0d72b557283 - status: 200 OK - code: 200 - duration: 141.504791ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users?order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf&page=1&type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 5144 - uncompressed: false - body: '{"total_count":9,"users":[{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","first_name":"","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","last_name":"","locale":"fr_FR","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-03-05T14:31:18.088783Z","username":"hashicorp@scaleway.com"},{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","first_name":"Developper Tools","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"last_name":"TEAM","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-03-05T14:30:40.167634Z","username":"developer-tools-team@scaleway.com"},{"account_root_user_id":"d80e9d9c-f77f-45f6-9bf0-74046ee2b135","created_at":"2024-01-17T13:14:30.940996Z","deletable":true,"email":"jremy@scaleway.com","first_name":"Jonathan","id":"ee474852-1f90-4cc1-bad0-4a17998c51e7","last_login_at":"2025-06-11T08:20:21.331642Z","last_name":"REMY","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-06-11T08:20:21.326285Z","username":"jremy@scaleway.com"},{"account_root_user_id":"721f2fde-1a01-4854-822b-fcca5638d73e","created_at":"2024-01-18T09:30:48.009812Z","deletable":true,"email":"rleone@scaleway.com","first_name":"Rémy","id":"88b4dde1-f3d4-478a-a281-784d53399a30","last_login_at":"2025-05-28T14:08:22.095434Z","last_name":"LEONE","locale":"fr_FR","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33667564022","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-05-28T14:08:22.078996Z","username":"rleone@scaleway.com"},{"account_root_user_id":"9d6c7867-d571-46f2-b092-bf459d345fe0","created_at":"2024-01-18T09:33:00.754759Z","deletable":true,"email":"lmasson@scaleway.com","first_name":"Laure","id":"d8e03283-0413-4305-850a-4cbfc4caaba8","last_login_at":"2025-04-24T13:07:19.306154Z","last_name":"MASSON","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33646316333","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-04-24T13:07:19.295106Z","username":"lmasson@scaleway.com"},{"account_root_user_id":"4a76bd84-9e32-472b-85b5-bdf6a70b6239","created_at":"2024-04-10T13:53:57.102549Z","deletable":true,"email":"yfodil@scaleway.com","first_name":"Yacine","id":"a893a7b8-07d0-4258-b70b-b4b90d6c254d","last_login_at":"2025-06-02T07:53:19.475771Z","last_name":"FODIL","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-06-02T07:53:19.457135Z","username":"yfodil@scaleway.com"},{"account_root_user_id":"2a9a645f-b2ea-4441-872e-c9ce60d137e9","created_at":"2025-04-01T14:29:15.372836Z","deletable":true,"email":"lmarabese@scaleway.com","first_name":"Leïla","id":"29c74dc1-87e7-4c49-91a1-0ad5540ecdd7","last_login_at":"2025-06-11T08:20:22.151367Z","last_name":"MARABESE","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33648006380","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-06-11T08:20:22.147122Z","username":"lmarabese@scaleway.com"},{"account_root_user_id":"a4b0ffed-f500-4ea6-b469-51bbc7b2cb99","created_at":"2025-04-01T14:29:15.375406Z","deletable":true,"email":"gnoale@scaleway.com","first_name":"Guillaume","id":"e8acdc71-e1ee-4d39-b597-0cf4a3226f29","last_login_at":"2025-06-11T09:16:01.605815Z","last_name":"NOALE","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-06-11T09:16:01.600036Z","username":"gnoale@scaleway.com"},{"account_root_user_id":"","created_at":"2025-06-11T09:19:39.432800Z","deletable":true,"email":"foo@scaleway.com","first_name":"","id":"1ef9eeb8-ec54-4b8e-87d9-d5850a3df053","last_login_at":null,"last_name":"","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:19:39.432800Z","username":"foo"}]}' - headers: - Content-Length: - - "5144" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:19:40 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: - - fe9463c1-7241-40c8-97c6-37ee0768bae8 - status: 200 OK - code: 200 - duration: 146.220958ms - - id: 9 - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/1ef9eeb8-ec54-4b8e-87d9-d5850a3df053 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 481 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:19:39.432800Z","deletable":true,"email":"foo@scaleway.com","first_name":"","id":"1ef9eeb8-ec54-4b8e-87d9-d5850a3df053","last_login_at":null,"last_name":"","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:19:39.432800Z","username":"foo"}' - headers: - Content-Length: - - "481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:19:41 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: - - 95632b0f-5da5-43f1-a228-adb123d4837c - status: 200 OK - code: 200 - duration: 145.273ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users?order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf&page=1&type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 5144 - uncompressed: false - body: '{"total_count":9,"users":[{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","first_name":"","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","last_name":"","locale":"fr_FR","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-03-05T14:31:18.088783Z","username":"hashicorp@scaleway.com"},{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","first_name":"Developper Tools","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"last_name":"TEAM","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-03-05T14:30:40.167634Z","username":"developer-tools-team@scaleway.com"},{"account_root_user_id":"d80e9d9c-f77f-45f6-9bf0-74046ee2b135","created_at":"2024-01-17T13:14:30.940996Z","deletable":true,"email":"jremy@scaleway.com","first_name":"Jonathan","id":"ee474852-1f90-4cc1-bad0-4a17998c51e7","last_login_at":"2025-06-11T08:20:21.331642Z","last_name":"REMY","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-06-11T08:20:21.326285Z","username":"jremy@scaleway.com"},{"account_root_user_id":"721f2fde-1a01-4854-822b-fcca5638d73e","created_at":"2024-01-18T09:30:48.009812Z","deletable":true,"email":"rleone@scaleway.com","first_name":"Rémy","id":"88b4dde1-f3d4-478a-a281-784d53399a30","last_login_at":"2025-05-28T14:08:22.095434Z","last_name":"LEONE","locale":"fr_FR","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33667564022","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-05-28T14:08:22.078996Z","username":"rleone@scaleway.com"},{"account_root_user_id":"9d6c7867-d571-46f2-b092-bf459d345fe0","created_at":"2024-01-18T09:33:00.754759Z","deletable":true,"email":"lmasson@scaleway.com","first_name":"Laure","id":"d8e03283-0413-4305-850a-4cbfc4caaba8","last_login_at":"2025-04-24T13:07:19.306154Z","last_name":"MASSON","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33646316333","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-04-24T13:07:19.295106Z","username":"lmasson@scaleway.com"},{"account_root_user_id":"4a76bd84-9e32-472b-85b5-bdf6a70b6239","created_at":"2024-04-10T13:53:57.102549Z","deletable":true,"email":"yfodil@scaleway.com","first_name":"Yacine","id":"a893a7b8-07d0-4258-b70b-b4b90d6c254d","last_login_at":"2025-06-02T07:53:19.475771Z","last_name":"FODIL","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-06-02T07:53:19.457135Z","username":"yfodil@scaleway.com"},{"account_root_user_id":"2a9a645f-b2ea-4441-872e-c9ce60d137e9","created_at":"2025-04-01T14:29:15.372836Z","deletable":true,"email":"lmarabese@scaleway.com","first_name":"Leïla","id":"29c74dc1-87e7-4c49-91a1-0ad5540ecdd7","last_login_at":"2025-06-11T08:20:22.151367Z","last_name":"MARABESE","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33648006380","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-06-11T08:20:22.147122Z","username":"lmarabese@scaleway.com"},{"account_root_user_id":"a4b0ffed-f500-4ea6-b469-51bbc7b2cb99","created_at":"2025-04-01T14:29:15.375406Z","deletable":true,"email":"gnoale@scaleway.com","first_name":"Guillaume","id":"e8acdc71-e1ee-4d39-b597-0cf4a3226f29","last_login_at":"2025-06-11T09:16:01.605815Z","last_name":"NOALE","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-06-11T09:16:01.600036Z","username":"gnoale@scaleway.com"},{"account_root_user_id":"","created_at":"2025-06-11T09:19:39.432800Z","deletable":true,"email":"foo@scaleway.com","first_name":"","id":"1ef9eeb8-ec54-4b8e-87d9-d5850a3df053","last_login_at":null,"last_name":"","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:19:39.432800Z","username":"foo"}]}' - headers: - Content-Length: - - "5144" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:19:41 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: - - 5dba00e2-4ecd-4a82-9088-3bb521d06b26 - status: 200 OK - code: 200 - duration: 145.407458ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/1ef9eeb8-ec54-4b8e-87d9-d5850a3df053 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 481 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:19:39.432800Z","deletable":true,"email":"foo@scaleway.com","first_name":"","id":"1ef9eeb8-ec54-4b8e-87d9-d5850a3df053","last_login_at":null,"last_name":"","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:19:39.432800Z","username":"foo"}' - headers: - Content-Length: - - "481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:19:41 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: - - f81e5079-2e1a-48a3-8820-6ae1dd281488 - status: 200 OK - code: 200 - duration: 140.209875ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/1ef9eeb8-ec54-4b8e-87d9-d5850a3df053 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 481 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:19:39.432800Z","deletable":true,"email":"foo@scaleway.com","first_name":"","id":"1ef9eeb8-ec54-4b8e-87d9-d5850a3df053","last_login_at":null,"last_name":"","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:19:39.432800Z","username":"foo"}' - headers: - Content-Length: - - "481" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:19:41 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: - - 4d5409c5-892c-4469-b1a6-077ec8c94212 - status: 200 OK - code: 200 - duration: 123.800625ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users?order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf&page=1&type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 5144 - uncompressed: false - body: '{"total_count":9,"users":[{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","first_name":"","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","last_name":"","locale":"fr_FR","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-03-05T14:31:18.088783Z","username":"hashicorp@scaleway.com"},{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","first_name":"Developper Tools","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"last_name":"TEAM","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-03-05T14:30:40.167634Z","username":"developer-tools-team@scaleway.com"},{"account_root_user_id":"d80e9d9c-f77f-45f6-9bf0-74046ee2b135","created_at":"2024-01-17T13:14:30.940996Z","deletable":true,"email":"jremy@scaleway.com","first_name":"Jonathan","id":"ee474852-1f90-4cc1-bad0-4a17998c51e7","last_login_at":"2025-06-11T08:20:21.331642Z","last_name":"REMY","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-06-11T08:20:21.326285Z","username":"jremy@scaleway.com"},{"account_root_user_id":"721f2fde-1a01-4854-822b-fcca5638d73e","created_at":"2024-01-18T09:30:48.009812Z","deletable":true,"email":"rleone@scaleway.com","first_name":"Rémy","id":"88b4dde1-f3d4-478a-a281-784d53399a30","last_login_at":"2025-05-28T14:08:22.095434Z","last_name":"LEONE","locale":"fr_FR","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33667564022","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-05-28T14:08:22.078996Z","username":"rleone@scaleway.com"},{"account_root_user_id":"9d6c7867-d571-46f2-b092-bf459d345fe0","created_at":"2024-01-18T09:33:00.754759Z","deletable":true,"email":"lmasson@scaleway.com","first_name":"Laure","id":"d8e03283-0413-4305-850a-4cbfc4caaba8","last_login_at":"2025-04-24T13:07:19.306154Z","last_name":"MASSON","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33646316333","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-04-24T13:07:19.295106Z","username":"lmasson@scaleway.com"},{"account_root_user_id":"4a76bd84-9e32-472b-85b5-bdf6a70b6239","created_at":"2024-04-10T13:53:57.102549Z","deletable":true,"email":"yfodil@scaleway.com","first_name":"Yacine","id":"a893a7b8-07d0-4258-b70b-b4b90d6c254d","last_login_at":"2025-06-02T07:53:19.475771Z","last_name":"FODIL","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-06-02T07:53:19.457135Z","username":"yfodil@scaleway.com"},{"account_root_user_id":"2a9a645f-b2ea-4441-872e-c9ce60d137e9","created_at":"2025-04-01T14:29:15.372836Z","deletable":true,"email":"lmarabese@scaleway.com","first_name":"Leïla","id":"29c74dc1-87e7-4c49-91a1-0ad5540ecdd7","last_login_at":"2025-06-11T08:20:22.151367Z","last_name":"MARABESE","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33648006380","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-06-11T08:20:22.147122Z","username":"lmarabese@scaleway.com"},{"account_root_user_id":"a4b0ffed-f500-4ea6-b469-51bbc7b2cb99","created_at":"2025-04-01T14:29:15.375406Z","deletable":true,"email":"gnoale@scaleway.com","first_name":"Guillaume","id":"e8acdc71-e1ee-4d39-b597-0cf4a3226f29","last_login_at":"2025-06-11T09:16:01.605815Z","last_name":"NOALE","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-06-11T09:16:01.600036Z","username":"gnoale@scaleway.com"},{"account_root_user_id":"","created_at":"2025-06-11T09:19:39.432800Z","deletable":true,"email":"foo@scaleway.com","first_name":"","id":"1ef9eeb8-ec54-4b8e-87d9-d5850a3df053","last_login_at":null,"last_name":"","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:19:39.432800Z","username":"foo"}]}' - headers: - Content-Length: - - "5144" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:19:41 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: - - 530268bc-7d18-4083-be4f-586558584254 - status: 200 OK - code: 200 - duration: 133.538959ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/1ef9eeb8-ec54-4b8e-87d9-d5850a3df053 - 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: - - Wed, 11 Jun 2025 09:19:41 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: - - 4d2e7bcb-9801-4700-aaba-fb5cb07c3502 - status: 204 No Content - code: 204 - duration: 160.325167ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + page: + - "1" + type: + - unknown_type + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users?order_by=created_at_asc&organization_id=11111111-1111-1111-1111-111111111111&page=1&type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 4420 + body: "{\"users\":[{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}, {\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"ee474852-1f90-4cc1-bad0-4a17998c51e7\", \"email\":\"jremy@scaleway.com\", \"username\":\"jremy@scaleway.com\", \"first_name\":\"Jonathan\", \"last_name\":\"REMY\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2024-01-17T13:14:30.940996Z\", \"updated_at\":\"2025-10-28T05:00:28.599503Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-10-28T05:00:28.621017Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"88b4dde1-f3d4-478a-a281-784d53399a30\", \"email\":\"rleone@scaleway.com\", \"username\":\"rleone@scaleway.com\", \"first_name\":\"Rémy\", \"last_name\":\"LEONE\", \"phone_number\":\"+33667564022\", \"locale\":\"fr_FR\", \"created_at\":\"2024-01-18T09:30:48.009812Z\", \"updated_at\":\"2025-10-29T13:41:56.438633Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-10-29T13:40:17.341551Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"d8e03283-0413-4305-850a-4cbfc4caaba8\", \"email\":\"lmasson@scaleway.com\", \"username\":\"lmasson@scaleway.com\", \"first_name\":\"Laure\", \"last_name\":\"MASSON\", \"phone_number\":\"+33646316333\", \"locale\":\"en_US\", \"created_at\":\"2024-01-18T09:33:00.754759Z\", \"updated_at\":\"2025-11-09T16:59:42.564500Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-11-09T16:59:42.587164Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"a893a7b8-07d0-4258-b70b-b4b90d6c254d\", \"email\":\"yfodil@scaleway.com\", \"username\":\"yfodil@scaleway.com\", \"first_name\":\"Yacine\", \"last_name\":\"FODIL\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2024-04-10T13:53:57.102549Z\", \"updated_at\":\"2025-10-23T11:46:41.138432Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-10-23T11:46:41.166526Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"29c74dc1-87e7-4c49-91a1-0ad5540ecdd7\", \"email\":\"lmarabese@scaleway.com\", \"username\":\"lmarabese@scaleway.com\", \"first_name\":\"Leïla\", \"last_name\":\"MARABESE\", \"phone_number\":\"+33648006380\", \"locale\":\"en_US\", \"created_at\":\"2025-04-01T14:29:15.372836Z\", \"updated_at\":\"2025-11-06T17:33:13.755601Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-11-06T17:33:13.771888Z\", \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"0b8cc93b-dfd2-4427-b674-8d27affb0334\", \"email\":\"esoulard@scaleway.com\", \"username\":\"esoulard@scaleway.com\", \"first_name\":\"Estelle\", \"last_name\":\"Soulard\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-10-27T15:50:38.591562Z\", \"updated_at\":\"2025-11-17T16:31:30.143175Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-11-17T16:31:30.160634Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}], \"total_count\":8}" + headers: + Content-Length: + - "4420" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9145199c-35bc-44e0-b94a-ae50d0aa53e1 + status: 200 OK + code: 200 + duration: 110.757854ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 253 + host: api.scaleway.com + body: "{\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"member\":{\"email\":\"foo@scaleway.com\",\"send_password_email\":false,\"send_welcome_email\":false,\"username\":\"foo\",\"password\":\"\",\"first_name\":\"\",\"last_name\":\"\",\"phone_number\":\"\",\"locale\":\"\"}}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 481 + body: "{\"id\":\"4560f330-0171-4c97-b231-e25bf6afd724\", \"email\":\"foo@scaleway.com\", \"username\":\"foo\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-11-17T17:10:50.595660Z\", \"updated_at\":\"2025-11-17T17:10:50.595660Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "481" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0768d7e0-c9e5-4702-846c-da17d29f1751 + status: 200 OK + code: 200 + duration: 365.262214ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/4560f330-0171-4c97-b231-e25bf6afd724 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 481 + body: "{\"id\":\"4560f330-0171-4c97-b231-e25bf6afd724\", \"email\":\"foo@scaleway.com\", \"username\":\"foo\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-11-17T17:10:50.595660Z\", \"updated_at\":\"2025-11-17T17:10:50.595660Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "481" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 738796d9-1dc9-4d69-b1dc-faa01cd9a3c2 + status: 200 OK + code: 200 + duration: 79.935915ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/4560f330-0171-4c97-b231-e25bf6afd724 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 481 + body: "{\"id\":\"4560f330-0171-4c97-b231-e25bf6afd724\", \"email\":\"foo@scaleway.com\", \"username\":\"foo\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-11-17T17:10:50.595660Z\", \"updated_at\":\"2025-11-17T17:10:50.595660Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "481" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 4228b49d-18c4-4f60-9302-3c1491cd8def + status: 200 OK + code: 200 + duration: 55.170905ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/4560f330-0171-4c97-b231-e25bf6afd724 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 481 + body: "{\"id\":\"4560f330-0171-4c97-b231-e25bf6afd724\", \"email\":\"foo@scaleway.com\", \"username\":\"foo\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-11-17T17:10:50.595660Z\", \"updated_at\":\"2025-11-17T17:10:50.595660Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "481" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 149e8ea6-f3fe-493a-a8cb-33fd35f37960 + status: 200 OK + code: 200 + duration: 77.838381ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7fac016b-7c92-449b-8986-6d8f74405ffd + status: 200 OK + code: 200 + duration: 177.823505ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + page: + - "1" + type: + - unknown_type + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users?order_by=created_at_asc&organization_id=11111111-1111-1111-1111-111111111111&page=1&type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 4903 + body: "{\"users\":[{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}, {\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"ee474852-1f90-4cc1-bad0-4a17998c51e7\", \"email\":\"jremy@scaleway.com\", \"username\":\"jremy@scaleway.com\", \"first_name\":\"Jonathan\", \"last_name\":\"REMY\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2024-01-17T13:14:30.940996Z\", \"updated_at\":\"2025-10-28T05:00:28.599503Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-10-28T05:00:28.621017Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"88b4dde1-f3d4-478a-a281-784d53399a30\", \"email\":\"rleone@scaleway.com\", \"username\":\"rleone@scaleway.com\", \"first_name\":\"Rémy\", \"last_name\":\"LEONE\", \"phone_number\":\"+33667564022\", \"locale\":\"fr_FR\", \"created_at\":\"2024-01-18T09:30:48.009812Z\", \"updated_at\":\"2025-10-29T13:41:56.438633Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-10-29T13:40:17.341551Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"d8e03283-0413-4305-850a-4cbfc4caaba8\", \"email\":\"lmasson@scaleway.com\", \"username\":\"lmasson@scaleway.com\", \"first_name\":\"Laure\", \"last_name\":\"MASSON\", \"phone_number\":\"+33646316333\", \"locale\":\"en_US\", \"created_at\":\"2024-01-18T09:33:00.754759Z\", \"updated_at\":\"2025-11-09T16:59:42.564500Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-11-09T16:59:42.587164Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"a893a7b8-07d0-4258-b70b-b4b90d6c254d\", \"email\":\"yfodil@scaleway.com\", \"username\":\"yfodil@scaleway.com\", \"first_name\":\"Yacine\", \"last_name\":\"FODIL\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2024-04-10T13:53:57.102549Z\", \"updated_at\":\"2025-10-23T11:46:41.138432Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-10-23T11:46:41.166526Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"29c74dc1-87e7-4c49-91a1-0ad5540ecdd7\", \"email\":\"lmarabese@scaleway.com\", \"username\":\"lmarabese@scaleway.com\", \"first_name\":\"Leïla\", \"last_name\":\"MARABESE\", \"phone_number\":\"+33648006380\", \"locale\":\"en_US\", \"created_at\":\"2025-04-01T14:29:15.372836Z\", \"updated_at\":\"2025-11-06T17:33:13.755601Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-11-06T17:33:13.771888Z\", \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"0b8cc93b-dfd2-4427-b674-8d27affb0334\", \"email\":\"esoulard@scaleway.com\", \"username\":\"esoulard@scaleway.com\", \"first_name\":\"Estelle\", \"last_name\":\"Soulard\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-10-27T15:50:38.591562Z\", \"updated_at\":\"2025-11-17T16:31:30.143175Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-11-17T16:31:30.160634Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"4560f330-0171-4c97-b231-e25bf6afd724\", \"email\":\"foo@scaleway.com\", \"username\":\"foo\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-11-17T17:10:50.595660Z\", \"updated_at\":\"2025-11-17T17:10:50.595660Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}], \"total_count\":9}" + headers: + Content-Length: + - "4903" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5f1a0a50-7f59-44b4-b16e-49c19933e85b + status: 200 OK + code: 200 + duration: 70.094181ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/4560f330-0171-4c97-b231-e25bf6afd724 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 481 + body: "{\"id\":\"4560f330-0171-4c97-b231-e25bf6afd724\", \"email\":\"foo@scaleway.com\", \"username\":\"foo\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-11-17T17:10:50.595660Z\", \"updated_at\":\"2025-11-17T17:10:50.595660Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "481" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d54edbbb-d7be-4da9-9212-1fa3eba49313 + status: 200 OK + code: 200 + duration: 52.223111ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + page: + - "1" + type: + - unknown_type + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users?order_by=created_at_asc&organization_id=11111111-1111-1111-1111-111111111111&page=1&type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 4903 + body: "{\"users\":[{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}, {\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"ee474852-1f90-4cc1-bad0-4a17998c51e7\", \"email\":\"jremy@scaleway.com\", \"username\":\"jremy@scaleway.com\", \"first_name\":\"Jonathan\", \"last_name\":\"REMY\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2024-01-17T13:14:30.940996Z\", \"updated_at\":\"2025-10-28T05:00:28.599503Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-10-28T05:00:28.621017Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"88b4dde1-f3d4-478a-a281-784d53399a30\", \"email\":\"rleone@scaleway.com\", \"username\":\"rleone@scaleway.com\", \"first_name\":\"Rémy\", \"last_name\":\"LEONE\", \"phone_number\":\"+33667564022\", \"locale\":\"fr_FR\", \"created_at\":\"2024-01-18T09:30:48.009812Z\", \"updated_at\":\"2025-10-29T13:41:56.438633Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-10-29T13:40:17.341551Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"d8e03283-0413-4305-850a-4cbfc4caaba8\", \"email\":\"lmasson@scaleway.com\", \"username\":\"lmasson@scaleway.com\", \"first_name\":\"Laure\", \"last_name\":\"MASSON\", \"phone_number\":\"+33646316333\", \"locale\":\"en_US\", \"created_at\":\"2024-01-18T09:33:00.754759Z\", \"updated_at\":\"2025-11-09T16:59:42.564500Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-11-09T16:59:42.587164Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"a893a7b8-07d0-4258-b70b-b4b90d6c254d\", \"email\":\"yfodil@scaleway.com\", \"username\":\"yfodil@scaleway.com\", \"first_name\":\"Yacine\", \"last_name\":\"FODIL\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2024-04-10T13:53:57.102549Z\", \"updated_at\":\"2025-10-23T11:46:41.138432Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-10-23T11:46:41.166526Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"29c74dc1-87e7-4c49-91a1-0ad5540ecdd7\", \"email\":\"lmarabese@scaleway.com\", \"username\":\"lmarabese@scaleway.com\", \"first_name\":\"Leïla\", \"last_name\":\"MARABESE\", \"phone_number\":\"+33648006380\", \"locale\":\"en_US\", \"created_at\":\"2025-04-01T14:29:15.372836Z\", \"updated_at\":\"2025-11-06T17:33:13.755601Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-11-06T17:33:13.771888Z\", \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"0b8cc93b-dfd2-4427-b674-8d27affb0334\", \"email\":\"esoulard@scaleway.com\", \"username\":\"esoulard@scaleway.com\", \"first_name\":\"Estelle\", \"last_name\":\"Soulard\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-10-27T15:50:38.591562Z\", \"updated_at\":\"2025-11-17T16:31:30.143175Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-11-17T16:31:30.160634Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}, {\"id\":\"4560f330-0171-4c97-b231-e25bf6afd724\", \"email\":\"foo@scaleway.com\", \"username\":\"foo\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-11-17T17:10:50.595660Z\", \"updated_at\":\"2025-11-17T17:10:50.595660Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}], \"total_count\":9}" + headers: + Content-Length: + - "4903" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 58655104-1ee1-4a4e-a0db-cc712e19fdbd + status: 200 OK + code: 200 + duration: 52.520265ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/4560f330-0171-4c97-b231-e25bf6afd724 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 481 + body: "{\"id\":\"4560f330-0171-4c97-b231-e25bf6afd724\", \"email\":\"foo@scaleway.com\", \"username\":\"foo\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-11-17T17:10:50.595660Z\", \"updated_at\":\"2025-11-17T17:10:50.595660Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "481" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 4c8225f5-6177-4b0b-8375-7272bbf52ca8 + status: 200 OK + code: 200 + duration: 75.511709ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/4560f330-0171-4c97-b231-e25bf6afd724 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 481 + body: "{\"id\":\"4560f330-0171-4c97-b231-e25bf6afd724\", \"email\":\"foo@scaleway.com\", \"username\":\"foo\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-11-17T17:10:50.595660Z\", \"updated_at\":\"2025-11-17T17:10:50.595660Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "481" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9c39d205-7064-43f3-b433-18fb3b99a1c2 + status: 200 OK + code: 200 + duration: 177.236134ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/4560f330-0171-4c97-b231-e25bf6afd724 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f504e93e-beb5-46db-8f6f-9ce0f75bf32c + status: 204 No Content + code: 204 + duration: 258.781486ms diff --git a/internal/services/iam/testdata/group-applications.cassette.yaml b/internal/services/iam/testdata/group-applications.cassette.yaml index 4444509b3..858cc5718 100644 --- a/internal/services/iam/testdata/group-applications.cassette.yaml +++ b/internal/services/iam/testdata/group-applications.cassette.yaml @@ -1,2216 +1,1458 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 117 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.812789Z","deletable":true,"description":"","editable":true,"id":"7b1fa769-65f2-4bb0-825a-ff74ed66c24b","managed":false,"name":"tf_tests_iam_group_app","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.812789Z"}' - headers: - Content-Length: - - "322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - f13c6b61-ca60-47de-98ac-e15ec3ab6f02 - status: 200 OK - code: 200 - duration: 130.768ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/7b1fa769-65f2-4bb0-825a-ff74ed66c24b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.812789Z","deletable":true,"description":"","editable":true,"id":"7b1fa769-65f2-4bb0-825a-ff74ed66c24b","managed":false,"name":"tf_tests_iam_group_app","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.812789Z"}' - headers: - Content-Length: - - "322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - abe82fc1-0bcd-404b-998d-b9f20c131c88 - status: 200 OK - code: 200 - duration: 93.3795ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 117 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf_tests_iam_group_app","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 342 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "342" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - bce63263-02ef-444f-8c58-2f4da859d413 - status: 200 OK - code: 200 - duration: 111.321458ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 74 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_ids":[],"application_ids":["7b1fa769-65f2-4bb0-825a-ff74ed66c24b"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90/members - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 382 - uncompressed: false - body: '{"application_ids":["7b1fa769-65f2-4bb0-825a-ff74ed66c24b"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":false,"description":"","editable":false,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "382" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 35c57380-0664-4115-a76c-718eeb8a44f0 - status: 200 OK - code: 200 - duration: 156.219583ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 380 - uncompressed: false - body: '{"application_ids":["7b1fa769-65f2-4bb0-825a-ff74ed66c24b"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "380" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 0de9fe4b-ba6e-4841-87e9-9aaa078dfd92 - status: 200 OK - code: 200 - duration: 93.738291ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 380 - uncompressed: false - body: '{"application_ids":["7b1fa769-65f2-4bb0-825a-ff74ed66c24b"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "380" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - ab4873e8-a042-4e8a-98f3-293b61850a31 - status: 200 OK - code: 200 - duration: 98.0685ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/7b1fa769-65f2-4bb0-825a-ff74ed66c24b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.812789Z","deletable":true,"description":"","editable":true,"id":"7b1fa769-65f2-4bb0-825a-ff74ed66c24b","managed":false,"name":"tf_tests_iam_group_app","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.812789Z"}' - headers: - Content-Length: - - "322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 5b7a0e74-afaa-46ce-a951-68a854155df6 - status: 200 OK - code: 200 - duration: 98.124584ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 380 - uncompressed: false - body: '{"application_ids":["7b1fa769-65f2-4bb0-825a-ff74ed66c24b"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "380" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 3e70873b-24a2-4d28-ad53-9f722f89102c - status: 200 OK - code: 200 - duration: 113.610834ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/7b1fa769-65f2-4bb0-825a-ff74ed66c24b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.812789Z","deletable":true,"description":"","editable":true,"id":"7b1fa769-65f2-4bb0-825a-ff74ed66c24b","managed":false,"name":"tf_tests_iam_group_app","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.812789Z"}' - headers: - Content-Length: - - "322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:43 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: - - 0b3fc9d5-0975-4354-b129-aeb5ffcc4361 - status: 200 OK - code: 200 - duration: 126.103708ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 380 - uncompressed: false - body: '{"application_ids":["7b1fa769-65f2-4bb0-825a-ff74ed66c24b"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "380" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:43 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: - - 6c13dfe2-d0cf-4938-be36-e2e41049b8cf - status: 200 OK - code: 200 - duration: 107.176709ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 118 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_iam_group_app2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.939716Z","deletable":true,"description":"","editable":true,"id":"8fde8388-11cd-4927-a46f-7ee48546b898","managed":false,"name":"tf_tests_iam_group_app2","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:44.939716Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:44 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: - - 0659d737-7aa7-438e-8291-cc248abcf450 - status: 200 OK - code: 200 - duration: 127.474125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/8fde8388-11cd-4927-a46f-7ee48546b898 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.939716Z","deletable":true,"description":"","editable":true,"id":"8fde8388-11cd-4927-a46f-7ee48546b898","managed":false,"name":"tf_tests_iam_group_app2","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:44.939716Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - 5d8c23dd-c49c-40a6-ae9f-6ef65ab5147b - status: 200 OK - code: 200 - duration: 83.968459ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 380 - uncompressed: false - body: '{"application_ids":["7b1fa769-65f2-4bb0-825a-ff74ed66c24b"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "380" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - 32688dd2-e68e-49ed-ab7b-82e2816be232 - status: 200 OK - code: 200 - duration: 82.934833ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_ids":[],"application_ids":["7b1fa769-65f2-4bb0-825a-ff74ed66c24b","8fde8388-11cd-4927-a46f-7ee48546b898"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90/members - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 422 - uncompressed: false - body: '{"application_ids":["7b1fa769-65f2-4bb0-825a-ff74ed66c24b","8fde8388-11cd-4927-a46f-7ee48546b898"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":false,"description":"","editable":false,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "422" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - 40a4840d-304e-4811-a9c2-3a4ae62f4991 - status: 200 OK - code: 200 - duration: 149.552791ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 420 - uncompressed: false - body: '{"application_ids":["7b1fa769-65f2-4bb0-825a-ff74ed66c24b","8fde8388-11cd-4927-a46f-7ee48546b898"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "420" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - ccedf8ad-4ffd-4716-8dd2-27589a030260 - status: 200 OK - code: 200 - duration: 95.646167ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 420 - uncompressed: false - body: '{"application_ids":["7b1fa769-65f2-4bb0-825a-ff74ed66c24b","8fde8388-11cd-4927-a46f-7ee48546b898"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "420" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - 571d5296-a769-4575-bb11-e4ef74391859 - status: 200 OK - code: 200 - duration: 107.58525ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/8fde8388-11cd-4927-a46f-7ee48546b898 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.939716Z","deletable":true,"description":"","editable":true,"id":"8fde8388-11cd-4927-a46f-7ee48546b898","managed":false,"name":"tf_tests_iam_group_app2","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:44.939716Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - dc7464a0-5f9a-4fd1-9249-f11415c765ef - status: 200 OK - code: 200 - duration: 103.005584ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/7b1fa769-65f2-4bb0-825a-ff74ed66c24b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.812789Z","deletable":true,"description":"","editable":true,"id":"7b1fa769-65f2-4bb0-825a-ff74ed66c24b","managed":false,"name":"tf_tests_iam_group_app","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.812789Z"}' - headers: - Content-Length: - - "322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 8551c4ef-d4ed-4b3d-a759-3b8192f682c0 - status: 200 OK - code: 200 - duration: 120.108625ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 420 - uncompressed: false - body: '{"application_ids":["7b1fa769-65f2-4bb0-825a-ff74ed66c24b","8fde8388-11cd-4927-a46f-7ee48546b898"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "420" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 923fca21-3643-4b7a-a1e6-be1e6942b27f - status: 200 OK - code: 200 - duration: 102.674625ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/8fde8388-11cd-4927-a46f-7ee48546b898 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.939716Z","deletable":true,"description":"","editable":true,"id":"8fde8388-11cd-4927-a46f-7ee48546b898","managed":false,"name":"tf_tests_iam_group_app2","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:44.939716Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - f48a0798-6a9f-43da-9d0e-f670089a3c7e - status: 200 OK - code: 200 - duration: 107.561167ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/7b1fa769-65f2-4bb0-825a-ff74ed66c24b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.812789Z","deletable":true,"description":"","editable":true,"id":"7b1fa769-65f2-4bb0-825a-ff74ed66c24b","managed":false,"name":"tf_tests_iam_group_app","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.812789Z"}' - headers: - Content-Length: - - "322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - 9769296d-5825-4afb-9185-f18ea5209c8d - status: 200 OK - code: 200 - duration: 115.842ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 420 - uncompressed: false - body: '{"application_ids":["7b1fa769-65f2-4bb0-825a-ff74ed66c24b","8fde8388-11cd-4927-a46f-7ee48546b898"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "420" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - 8cc8e3f5-5115-4901-8666-d6ec58d16f9e - status: 200 OK - code: 200 - duration: 91.012375ms - - id: 22 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 420 - uncompressed: false - body: '{"application_ids":["7b1fa769-65f2-4bb0-825a-ff74ed66c24b","8fde8388-11cd-4927-a46f-7ee48546b898"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "420" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:49 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: - - f1863c60-9b63-43f5-a216-bf2629d2b883 - status: 200 OK - code: 200 - duration: 91.749875ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 74 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_ids":[],"application_ids":["8fde8388-11cd-4927-a46f-7ee48546b898"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90/members - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 382 - uncompressed: false - body: '{"application_ids":["8fde8388-11cd-4927-a46f-7ee48546b898"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":false,"description":"","editable":false,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "382" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:50 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: - - c9504512-d26d-4e92-b331-a19a858b11a9 - status: 200 OK - code: 200 - duration: 216.2825ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 380 - uncompressed: false - body: '{"application_ids":["8fde8388-11cd-4927-a46f-7ee48546b898"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "380" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:50 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: - - 4d1f9cd7-c944-49f0-a6ed-c3045b20a243 - status: 200 OK - code: 200 - duration: 128.225ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 380 - uncompressed: false - body: '{"application_ids":["8fde8388-11cd-4927-a46f-7ee48546b898"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "380" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:50 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: - - 1e827365-c4f9-4cd0-86d1-f5f0e21c0370 - status: 200 OK - code: 200 - duration: 104.706459ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/8fde8388-11cd-4927-a46f-7ee48546b898 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.939716Z","deletable":true,"description":"","editable":true,"id":"8fde8388-11cd-4927-a46f-7ee48546b898","managed":false,"name":"tf_tests_iam_group_app2","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:44.939716Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - 7dffdcbd-e211-432a-bf10-c22053cdf674 - status: 200 OK - code: 200 - duration: 85.874458ms - - id: 27 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/7b1fa769-65f2-4bb0-825a-ff74ed66c24b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.812789Z","deletable":true,"description":"","editable":true,"id":"7b1fa769-65f2-4bb0-825a-ff74ed66c24b","managed":false,"name":"tf_tests_iam_group_app","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.812789Z"}' - headers: - Content-Length: - - "322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - fb8b6624-ec1e-4cde-bb69-e0733f0edf9c - status: 200 OK - code: 200 - duration: 89.333167ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 380 - uncompressed: false - body: '{"application_ids":["8fde8388-11cd-4927-a46f-7ee48546b898"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "380" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - 58c5af6c-b16d-4b8a-9503-dfd81391d3f5 - status: 200 OK - code: 200 - duration: 87.425292ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/7b1fa769-65f2-4bb0-825a-ff74ed66c24b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.812789Z","deletable":true,"description":"","editable":true,"id":"7b1fa769-65f2-4bb0-825a-ff74ed66c24b","managed":false,"name":"tf_tests_iam_group_app","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.812789Z"}' - headers: - Content-Length: - - "322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - 0147cf21-3293-4c5b-b847-ce8ccab0e1ac - status: 200 OK - code: 200 - duration: 117.181583ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 380 - uncompressed: false - body: '{"application_ids":["8fde8388-11cd-4927-a46f-7ee48546b898"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "380" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - 5efc5ba4-61ba-478b-a4ef-65b30ea2a750 - status: 200 OK - code: 200 - duration: 134.779958ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/8fde8388-11cd-4927-a46f-7ee48546b898 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.939716Z","deletable":true,"description":"","editable":true,"id":"8fde8388-11cd-4927-a46f-7ee48546b898","managed":false,"name":"tf_tests_iam_group_app2","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:44.939716Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - 9d56bebc-1cc4-4c8f-9af2-f168b0f08b29 - status: 200 OK - code: 200 - duration: 135.960709ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 380 - uncompressed: false - body: '{"application_ids":["8fde8388-11cd-4927-a46f-7ee48546b898"],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "380" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - deabd11b-070e-435f-827e-ec456a68cd72 - status: 200 OK - code: 200 - duration: 103.856875ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 57 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"8fde8388-11cd-4927-a46f-7ee48546b898"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90/remove-member - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 342 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "342" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - debb7797-75c8-4d5f-84cd-a62332425f6d - status: 200 OK - code: 200 - duration: 211.576791ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 342 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "342" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 045b94c5-e6a6-47c4-945e-8a2f6e571b37 - status: 200 OK - code: 200 - duration: 101.018542ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 342 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "342" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 2da5c1c2-575d-4447-930f-2a7352c0ee64 - status: 200 OK - code: 200 - duration: 127.464167ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/8fde8388-11cd-4927-a46f-7ee48546b898 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.939716Z","deletable":true,"description":"","editable":true,"id":"8fde8388-11cd-4927-a46f-7ee48546b898","managed":false,"name":"tf_tests_iam_group_app2","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:44.939716Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:56 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: - - 9676f2b8-34a0-4b9b-8ef9-7aa7ec070b04 - status: 200 OK - code: 200 - duration: 89.858667ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 342 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:40.031368Z","deletable":true,"description":"","editable":true,"id":"3d8e071b-e4b5-4b12-916b-67162e540f90","managed":false,"name":"tf_tests_iam_group_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:40.031368Z","user_ids":[]}' - headers: - Content-Length: - - "342" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:56 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: - - f7348c31-7fc0-41b2-85d6-132c8dae2003 - status: 200 OK - code: 200 - duration: 101.839916ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/7b1fa769-65f2-4bb0-825a-ff74ed66c24b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.812789Z","deletable":true,"description":"","editable":true,"id":"7b1fa769-65f2-4bb0-825a-ff74ed66c24b","managed":false,"name":"tf_tests_iam_group_app","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.812789Z"}' - headers: - Content-Length: - - "322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:56 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: - - 9f5e35aa-ddfd-4b9d-932d-046c6c330511 - status: 200 OK - code: 200 - duration: 107.068167ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/7b1fa769-65f2-4bb0-825a-ff74ed66c24b - 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: - - Wed, 22 Jan 2025 15:32:58 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: - - ffe3120e-4fdd-49bb-a51c-22c82bbb4f36 - status: 204 No Content - code: 204 - duration: 92.528541ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - 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: - - Wed, 22 Jan 2025 15:32:58 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: - - 36428137-db63-4a49-afe2-41667c140584 - status: 204 No Content - code: 204 - duration: 98.893459ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/8fde8388-11cd-4927-a46f-7ee48546b898 - 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: - - Wed, 22 Jan 2025 15:32:58 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: - - d86fd7e8-9082-4d96-9adc-2ad0d1f4f2db - status: 204 No Content - code: 204 - duration: 117.5955ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/3d8e071b-e4b5-4b12-916b-67162e540f90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 126 - uncompressed: false - body: '{"message":"resource is not found","resource":"group","resource_id":"3d8e071b-e4b5-4b12-916b-67162e540f90","type":"not_found"}' - headers: - Content-Length: - - "126" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:58 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: - - 58bb3ba6-7fda-4b62-b3fc-f5302a44a082 - status: 404 Not Found - code: 404 - duration: 26.197209ms - - id: 43 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/7b1fa769-65f2-4bb0-825a-ff74ed66c24b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 132 - uncompressed: false - body: '{"message":"resource is not found","resource":"application","resource_id":"7b1fa769-65f2-4bb0-825a-ff74ed66c24b","type":"not_found"}' - headers: - Content-Length: - - "132" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:58 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: - - c744922b-5214-45a1-86a2-dbdc040c7396 - status: 404 Not Found - code: 404 - duration: 25.4385ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/8fde8388-11cd-4927-a46f-7ee48546b898 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 132 - uncompressed: false - body: '{"message":"resource is not found","resource":"application","resource_id":"8fde8388-11cd-4927-a46f-7ee48546b898","type":"not_found"}' - headers: - Content-Length: - - "132" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:58 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: - - 42e8ee74-daa0-4b6b-ac1e-58c4d7f4ae69 - status: 404 Not Found - code: 404 - duration: 22.367541ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 117 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_iam_group_app\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"99a4b106-c36a-4ea8-8254-968996f3ea9f\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.448542Z\", \"updated_at\":\"2025-11-17T17:10:30.448542Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9693f312-8fd1-4fd0-bb79-b3532148f4b6 + status: 200 OK + code: 200 + duration: 169.197803ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/99a4b106-c36a-4ea8-8254-968996f3ea9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"99a4b106-c36a-4ea8-8254-968996f3ea9f\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.448542Z\", \"updated_at\":\"2025-11-17T17:10:30.448542Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 05b15d53-24bf-458c-8d13-1077235f72f4 + status: 200 OK + code: 200 + duration: 157.950493ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 117 + host: api.scaleway.com + body: "{\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"name\":\"tf_tests_iam_group_app\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 342 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "342" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9d4d133b-b1c6-4092-b460-0ec108a65ebc + status: 200 OK + code: 200 + duration: 246.14332ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 74 + host: api.scaleway.com + body: "{\"user_ids\":[],\"application_ids\":[\"99a4b106-c36a-4ea8-8254-968996f3ea9f\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5/members + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 380 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"99a4b106-c36a-4ea8-8254-968996f3ea9f\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "380" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6de418bd-e6bf-4fb6-a20e-645e1ffa965e + status: 200 OK + code: 200 + duration: 378.273963ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 380 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"99a4b106-c36a-4ea8-8254-968996f3ea9f\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "380" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6b76280f-d29e-443e-9d8f-28a24a582482 + status: 200 OK + code: 200 + duration: 164.085984ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 380 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"99a4b106-c36a-4ea8-8254-968996f3ea9f\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "380" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0fbd6cf1-eb91-4876-97e8-c4ec09088576 + status: 200 OK + code: 200 + duration: 214.16398ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/99a4b106-c36a-4ea8-8254-968996f3ea9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"99a4b106-c36a-4ea8-8254-968996f3ea9f\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.448542Z\", \"updated_at\":\"2025-11-17T17:10:30.448542Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1d86faac-04fa-4392-af01-6926439f9de9 + status: 200 OK + code: 200 + duration: 101.298349ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 380 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"99a4b106-c36a-4ea8-8254-968996f3ea9f\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "380" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9eeae931-3b81-43a4-bb67-ac07da6d4b1c + status: 200 OK + code: 200 + duration: 153.477099ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/99a4b106-c36a-4ea8-8254-968996f3ea9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"99a4b106-c36a-4ea8-8254-968996f3ea9f\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.448542Z\", \"updated_at\":\"2025-11-17T17:10:30.448542Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3899aee5-b0a9-4b3f-a31d-e1ad24953bb9 + status: 200 OK + code: 200 + duration: 43.532666ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 380 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"99a4b106-c36a-4ea8-8254-968996f3ea9f\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "380" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 37450227-12a0-4427-877c-89401eb67386 + status: 200 OK + code: 200 + duration: 186.92683ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_iam_group_app2\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\", \"name\":\"tf_tests_iam_group_app2\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:33.785012Z\", \"updated_at\":\"2025-11-17T17:10:33.785012Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2ed478e0-a5bf-4f3e-a2ec-7f92b7a601d4 + status: 200 OK + code: 200 + duration: 101.010391ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/aea7a6b5-43b3-48b1-ae65-964c18ecb4ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\", \"name\":\"tf_tests_iam_group_app2\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:33.785012Z\", \"updated_at\":\"2025-11-17T17:10:33.785012Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8aea1347-6cf6-4fe4-8f19-4bff2d5af435 + status: 200 OK + code: 200 + duration: 86.881811ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 380 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"99a4b106-c36a-4ea8-8254-968996f3ea9f\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "380" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b7b6f42f-daa4-455a-898f-9533facbd78c + status: 200 OK + code: 200 + duration: 98.64181ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 113 + host: api.scaleway.com + body: "{\"user_ids\":[],\"application_ids\":[\"99a4b106-c36a-4ea8-8254-968996f3ea9f\",\"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5/members + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"99a4b106-c36a-4ea8-8254-968996f3ea9f\", \"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8dc6fee0-51bb-4b1a-84ee-a0dbd5d006a4 + status: 200 OK + code: 200 + duration: 352.114326ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"99a4b106-c36a-4ea8-8254-968996f3ea9f\", \"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1d28c512-3c69-4dd4-99d1-8ca3a8977350 + status: 200 OK + code: 200 + duration: 54.014333ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"99a4b106-c36a-4ea8-8254-968996f3ea9f\", \"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - fe97596d-1dfe-40ac-a1e6-f61e00a6403a + status: 200 OK + code: 200 + duration: 49.648866ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/99a4b106-c36a-4ea8-8254-968996f3ea9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"99a4b106-c36a-4ea8-8254-968996f3ea9f\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.448542Z\", \"updated_at\":\"2025-11-17T17:10:30.448542Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9c8ee670-b1a0-47b3-b19a-27df66efb119 + status: 200 OK + code: 200 + duration: 54.904916ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/aea7a6b5-43b3-48b1-ae65-964c18ecb4ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\", \"name\":\"tf_tests_iam_group_app2\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:33.785012Z\", \"updated_at\":\"2025-11-17T17:10:33.785012Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8aba64ad-a571-449a-8034-33e715937562 + status: 200 OK + code: 200 + duration: 102.82083ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"99a4b106-c36a-4ea8-8254-968996f3ea9f\", \"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 268957ad-2a71-4479-bcc8-570a8cdaae96 + status: 200 OK + code: 200 + duration: 194.214765ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/aea7a6b5-43b3-48b1-ae65-964c18ecb4ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\", \"name\":\"tf_tests_iam_group_app2\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:33.785012Z\", \"updated_at\":\"2025-11-17T17:10:33.785012Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 35778c47-051a-45ad-9c7c-334d51b2b337 + status: 200 OK + code: 200 + duration: 68.49105ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/99a4b106-c36a-4ea8-8254-968996f3ea9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"99a4b106-c36a-4ea8-8254-968996f3ea9f\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.448542Z\", \"updated_at\":\"2025-11-17T17:10:30.448542Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6a5a5971-a220-440b-b42a-51f439cff851 + status: 200 OK + code: 200 + duration: 69.257525ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"99a4b106-c36a-4ea8-8254-968996f3ea9f\", \"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e4fc4e3b-4861-428b-ad6f-58a4c90a63ef + status: 200 OK + code: 200 + duration: 41.494087ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"99a4b106-c36a-4ea8-8254-968996f3ea9f\", \"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 101c1599-e2a7-49d5-8125-4ed00ff29c53 + status: 200 OK + code: 200 + duration: 56.639486ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 74 + host: api.scaleway.com + body: "{\"user_ids\":[],\"application_ids\":[\"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5/members + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 380 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "380" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - bd23993c-bcb7-4d40-91a7-73e59aa3c1dd + status: 200 OK + code: 200 + duration: 338.191743ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 380 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "380" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5a1810dc-5d79-4390-af40-d32d5861ba1f + status: 200 OK + code: 200 + duration: 42.149901ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 380 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "380" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 19236505-6b7a-4489-8d42-0975d488c579 + status: 200 OK + code: 200 + duration: 62.731506ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/99a4b106-c36a-4ea8-8254-968996f3ea9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"99a4b106-c36a-4ea8-8254-968996f3ea9f\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.448542Z\", \"updated_at\":\"2025-11-17T17:10:30.448542Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 34c1267b-6a2d-40fe-8c8b-84c696816043 + status: 200 OK + code: 200 + duration: 53.464568ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/aea7a6b5-43b3-48b1-ae65-964c18ecb4ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\", \"name\":\"tf_tests_iam_group_app2\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:33.785012Z\", \"updated_at\":\"2025-11-17T17:10:33.785012Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - cf1e9c46-7c92-4e3c-9ca1-4878b362f5cf + status: 200 OK + code: 200 + duration: 86.837988ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 380 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "380" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9d68a619-fa5c-41b6-8654-0bbe523c6fd1 + status: 200 OK + code: 200 + duration: 54.435165ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/aea7a6b5-43b3-48b1-ae65-964c18ecb4ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\", \"name\":\"tf_tests_iam_group_app2\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:33.785012Z\", \"updated_at\":\"2025-11-17T17:10:33.785012Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f78f8164-0167-44f3-b2e9-5bff56677cd5 + status: 200 OK + code: 200 + duration: 120.113779ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/99a4b106-c36a-4ea8-8254-968996f3ea9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"99a4b106-c36a-4ea8-8254-968996f3ea9f\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.448542Z\", \"updated_at\":\"2025-11-17T17:10:30.448542Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 86645609-b575-4b4a-a147-3ec08e40d44b + status: 200 OK + code: 200 + duration: 120.359742ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 380 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "380" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - dced95f2-8cfc-4d07-8a43-0c2f51457bc0 + status: 200 OK + code: 200 + duration: 120.845712ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 380 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "380" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 21116273-1446-49d9-b553-a5cb57994802 + status: 200 OK + code: 200 + duration: 40.47038ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 57 + host: api.scaleway.com + body: "{\"application_id\":\"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5/remove-member + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 342 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "342" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 495bf457-0ad1-4f78-968a-64e2617c1535 + status: 200 OK + code: 200 + duration: 117.840919ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 342 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "342" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7f22eeff-e565-4b95-81a7-985c14bc7040 + status: 200 OK + code: 200 + duration: 108.812858ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 342 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "342" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1577917b-959f-4943-b0ee-4d1bd3186598 + status: 200 OK + code: 200 + duration: 49.853117ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 342 + body: "{\"id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\", \"created_at\":\"2025-11-17T17:10:30.852915Z\", \"updated_at\":\"2025-11-17T17:10:30.852915Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "342" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0c49cece-d26b-4ecc-bc64-295730915648 + status: 200 OK + code: 200 + duration: 106.584977ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/aea7a6b5-43b3-48b1-ae65-964c18ecb4ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\", \"name\":\"tf_tests_iam_group_app2\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:33.785012Z\", \"updated_at\":\"2025-11-17T17:10:33.785012Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - db2e34d5-2082-40b8-a4d0-128753ed264b + status: 200 OK + code: 200 + duration: 107.192348ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/99a4b106-c36a-4ea8-8254-968996f3ea9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"99a4b106-c36a-4ea8-8254-968996f3ea9f\", \"name\":\"tf_tests_iam_group_app\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:30.448542Z\", \"updated_at\":\"2025-11-17T17:10:30.448542Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 763fbe1b-f493-4f50-ae0a-4e0f653d9cb2 + status: 200 OK + code: 200 + duration: 106.322302ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9c95453d-f0db-49cd-b8ea-0c6f65d7026f + status: 204 No Content + code: 204 + duration: 140.094532ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/aea7a6b5-43b3-48b1-ae65-964c18ecb4ed + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 61a32e9e-5475-4b17-923b-bbee019d805b + status: 204 No Content + code: 204 + duration: 181.524129ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/99a4b106-c36a-4ea8-8254-968996f3ea9f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 706d9ed9-2b29-439d-9313-640abb1b5d78 + status: 204 No Content + code: 204 + duration: 210.102552ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/4c615a80-c6af-4639-865d-f255d7c920d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 126 + body: "{\"message\":\"resource is not found\",\"resource\":\"group\",\"resource_id\":\"4c615a80-c6af-4639-865d-f255d7c920d5\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "126" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d156324b-2c50-4af1-b6a5-4ea706975da3 + status: 404 Not Found + code: 404 + duration: 87.230007ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/99a4b106-c36a-4ea8-8254-968996f3ea9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 132 + body: "{\"message\":\"resource is not found\",\"resource\":\"application\",\"resource_id\":\"99a4b106-c36a-4ea8-8254-968996f3ea9f\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "132" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 4c1ef8ad-a20d-4e54-8d5d-2fb53735c4c2 + status: 404 Not Found + code: 404 + duration: 66.910623ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/aea7a6b5-43b3-48b1-ae65-964c18ecb4ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 132 + body: "{\"message\":\"resource is not found\",\"resource\":\"application\",\"resource_id\":\"aea7a6b5-43b3-48b1-ae65-964c18ecb4ed\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "132" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 4c230a03-91df-44a8-b15e-bd5e622099f9 + status: 404 Not Found + code: 404 + duration: 51.038167ms diff --git a/internal/services/iam/testdata/group-basic.cassette.yaml b/internal/services/iam/testdata/group-basic.cassette.yaml index 434c05556..814451ae6 100644 --- a/internal/services/iam/testdata/group-basic.cassette.yaml +++ b/internal/services/iam/testdata/group-basic.cassette.yaml @@ -1,1481 +1,976 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 137 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf_tests_iam_group_basic","description":"","tags":["tf_tests","tests"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 363 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests","tests"],"updated_at":"2025-01-22T15:32:51.102580Z","user_ids":[]}' - headers: - Content-Length: - - "363" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:51 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: - - cd1bd817-fd55-4dcb-9016-d32cbd2eec8d - status: 200 OK - code: 200 - duration: 171.926166ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 363 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests","tests"],"updated_at":"2025-01-22T15:32:51.102580Z","user_ids":[]}' - headers: - Content-Length: - - "363" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:51 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: - - 31f1b774-1bc8-4c54-9e32-0ba175bd3bf1 - status: 200 OK - code: 200 - duration: 160.494375ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 363 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests","tests"],"updated_at":"2025-01-22T15:32:51.102580Z","user_ids":[]}' - headers: - Content-Length: - - "363" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:51 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: - - 1ba2d77b-d164-46ba-b074-ef1568b283ff - status: 200 OK - code: 200 - duration: 175.943917ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 363 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests","tests"],"updated_at":"2025-01-22T15:32:51.102580Z","user_ids":[]}' - headers: - Content-Length: - - "363" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - a49e1dbd-ec71-4d25-ae3f-cc8e9312e579 - status: 200 OK - code: 200 - duration: 117.355875ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 363 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests","tests"],"updated_at":"2025-01-22T15:32:51.102580Z","user_ids":[]}' - headers: - Content-Length: - - "363" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - 65647e4f-0ca8-4a56-8569-115bca569734 - status: 200 OK - code: 200 - duration: 101.656542ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 363 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests","tests"],"updated_at":"2025-01-22T15:32:51.102580Z","user_ids":[]}' - headers: - Content-Length: - - "363" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - b107c567-1cf7-4717-8520-32696c6dc3dc - status: 200 OK - code: 200 - duration: 170.402792ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 89 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_iam_group_basic","description":"basic description","tags":["tf_tests"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 371 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"basic description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests"],"updated_at":"2025-01-22T15:32:55.287794Z","user_ids":[]}' - headers: - Content-Length: - - "371" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - ddd42a02-9422-4587-b91a-3a7c337ce64b - status: 200 OK - code: 200 - duration: 111.900166ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 371 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"basic description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests"],"updated_at":"2025-01-22T15:32:55.287794Z","user_ids":[]}' - headers: - Content-Length: - - "371" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 2f232a96-70c4-44be-b801-3012b6d8cdcd - status: 200 OK - code: 200 - duration: 105.427875ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 371 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"basic description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests"],"updated_at":"2025-01-22T15:32:55.287794Z","user_ids":[]}' - headers: - Content-Length: - - "371" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 6882c14c-e010-4755-948b-be8ce3be4232 - status: 200 OK - code: 200 - duration: 98.485167ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 371 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"basic description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests"],"updated_at":"2025-01-22T15:32:55.287794Z","user_ids":[]}' - headers: - Content-Length: - - "371" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:56 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: - - b5c05b54-9bf7-49d1-ae48-7a873a023c55 - status: 200 OK - code: 200 - duration: 92.990083ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 371 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"basic description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests"],"updated_at":"2025-01-22T15:32:55.287794Z","user_ids":[]}' - headers: - Content-Length: - - "371" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 48a82d26-6b5c-4a0d-a3ff-5543dbf3f4ec - status: 200 OK - code: 200 - duration: 91.232292ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 371 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"basic description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests"],"updated_at":"2025-01-22T15:32:55.287794Z","user_ids":[]}' - headers: - Content-Length: - - "371" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - 38a6702f-32cd-4cc0-8fd0-e9cf13252d19 - status: 200 OK - code: 200 - duration: 79.688834ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 87 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_iam_group_basic_renamed","description":"basic description","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 369 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"basic description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic_renamed","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:59.283703Z","user_ids":[]}' - headers: - Content-Length: - - "369" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - e9efaf4a-dac2-48d1-a5d5-6201c87f82c8 - status: 200 OK - code: 200 - duration: 88.144959ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 369 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"basic description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic_renamed","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:59.283703Z","user_ids":[]}' - headers: - Content-Length: - - "369" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - 49d77550-6e6f-4b39-a1ac-f870a9e57cbb - status: 200 OK - code: 200 - duration: 115.171791ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 369 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"basic description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic_renamed","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:59.283703Z","user_ids":[]}' - headers: - Content-Length: - - "369" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - bcddd6c1-28b8-4989-8245-a5fa4be5c43a - status: 200 OK - code: 200 - duration: 97.4635ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 369 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"basic description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic_renamed","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:59.283703Z","user_ids":[]}' - headers: - Content-Length: - - "369" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:00 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: - - 3f9a7d17-60c2-43c6-b95a-b1ba0777890d - status: 200 OK - code: 200 - duration: 109.47175ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 369 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"basic description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic_renamed","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:59.283703Z","user_ids":[]}' - headers: - Content-Length: - - "369" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:02 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: - - 72dcdc33-45a3-4a29-9cb5-3601a0ec74c9 - status: 200 OK - code: 200 - duration: 88.331917ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 369 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"basic description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic_renamed","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:59.283703Z","user_ids":[]}' - headers: - Content-Length: - - "369" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:03 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: - - 21df29b7-6285-4838-9f18-2b9e6a8db997 - status: 200 OK - code: 200 - duration: 88.577792ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 107 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_iam_group_basic_renamed","description":"this is another description","tags":["tf_tests"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 389 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"this is another description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic_renamed","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests"],"updated_at":"2025-01-22T15:33:03.511517Z","user_ids":[]}' - headers: - Content-Length: - - "389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:03 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: - - 8f175442-eec5-4dd2-8ea7-c45d73f7e3a9 - status: 200 OK - code: 200 - duration: 104.705916ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 389 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"this is another description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic_renamed","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests"],"updated_at":"2025-01-22T15:33:03.511517Z","user_ids":[]}' - headers: - Content-Length: - - "389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:03 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: - - f6442a71-ad68-4d26-a1e8-84b0f00f68c2 - status: 200 OK - code: 200 - duration: 83.663416ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 389 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"this is another description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic_renamed","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests"],"updated_at":"2025-01-22T15:33:03.511517Z","user_ids":[]}' - headers: - Content-Length: - - "389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:04 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: - - aa62c9d8-5c59-4255-a81d-0868421f4073 - status: 200 OK - code: 200 - duration: 156.189041ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 389 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"this is another description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic_renamed","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests"],"updated_at":"2025-01-22T15:33:03.511517Z","user_ids":[]}' - headers: - Content-Length: - - "389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:05 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: - - ea16bf90-5a02-495e-b638-4a8d4d9af0d7 - status: 200 OK - code: 200 - duration: 620.233042ms - - id: 22 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 389 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"this is another description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic_renamed","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests"],"updated_at":"2025-01-22T15:33:03.511517Z","user_ids":[]}' - headers: - Content-Length: - - "389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:06 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: - - 73f58be9-36fc-4f85-aeec-8848f3352530 - status: 200 OK - code: 200 - duration: 200.079291ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 389 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"this is another description","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic_renamed","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests"],"updated_at":"2025-01-22T15:33:03.511517Z","user_ids":[]}' - headers: - Content-Length: - - "389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 28dada47-a241-41f7-b3e0-238e6b8c2c65 - status: 200 OK - code: 200 - duration: 110.904416ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 70 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_iam_group_basic_renamed","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 352 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic_renamed","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:08.254115Z","user_ids":[]}' - headers: - Content-Length: - - "352" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 94f9c8ce-93f6-4a79-83ee-5d1f7444968d - status: 200 OK - code: 200 - duration: 98.3835ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 352 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic_renamed","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:08.254115Z","user_ids":[]}' - headers: - Content-Length: - - "352" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - ba0262e6-3813-42ea-9b62-7c83340e0c49 - status: 200 OK - code: 200 - duration: 95.031917ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 352 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic_renamed","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:08.254115Z","user_ids":[]}' - headers: - Content-Length: - - "352" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - da808ba1-d1ad-4526-a0fb-ffaa7b2af33d - status: 200 OK - code: 200 - duration: 81.76225ms - - id: 27 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 352 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:51.102580Z","deletable":true,"description":"","editable":true,"id":"70c4d754-024b-439e-90f1-6f70cb21431e","managed":false,"name":"tf_tests_iam_group_basic_renamed","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:08.254115Z","user_ids":[]}' - headers: - Content-Length: - - "352" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 3528fc3b-884c-492b-8e34-b39491fda8cd - status: 200 OK - code: 200 - duration: 87.768459ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - 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: - - Wed, 22 Jan 2025 15:33: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: - - f32eb003-e220-4bab-9e91-20029568bf5e - status: 204 No Content - code: 204 - duration: 86.1545ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/70c4d754-024b-439e-90f1-6f70cb21431e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 126 - uncompressed: false - body: '{"message":"resource is not found","resource":"group","resource_id":"70c4d754-024b-439e-90f1-6f70cb21431e","type":"not_found"}' - headers: - Content-Length: - - "126" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 1856d61c-5e6a-4d5d-817c-02cbbc7f6c2c - status: 404 Not Found - code: 404 - duration: 608.402666ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 137 + host: api.scaleway.com + body: "{\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"name\":\"tf_tests_iam_group_basic\",\"description\":\"\",\"tags\":[\"tf_tests\",\"tests\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 363 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:36.668807Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\", \"tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "363" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - cc38129c-d31b-4662-ba78-8e60b47dd435 + status: 200 OK + code: 200 + duration: 185.919759ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 363 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:36.668807Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\", \"tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "363" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 95116958-fce0-4714-928f-d9377b2a2f91 + status: 200 OK + code: 200 + duration: 58.544628ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 363 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:36.668807Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\", \"tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "363" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b6fba5da-b128-4f22-abc6-ff7931793774 + status: 200 OK + code: 200 + duration: 42.314271ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 363 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:36.668807Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\", \"tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "363" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 296146e5-1d21-4172-8426-455194008577 + status: 200 OK + code: 200 + duration: 42.62834ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 363 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:36.668807Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\", \"tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "363" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3e295d03-74e3-4815-a8ce-9aec0623e0fb + status: 200 OK + code: 200 + duration: 47.302078ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 363 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:36.668807Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\", \"tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "363" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 099d4ae7-ce85-47b7-b6f8-eb319cb2da37 + status: 200 OK + code: 200 + duration: 45.271916ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 89 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_iam_group_basic\",\"description\":\"basic description\",\"tags\":[\"tf_tests\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 371 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:39.141429Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic\", \"description\":\"basic description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "371" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 92e8160d-688f-4b46-9d6b-c2cf664d0f42 + status: 200 OK + code: 200 + duration: 220.888649ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 371 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:39.141429Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic\", \"description\":\"basic description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "371" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 644fe5f5-c0fe-45d2-865d-39ca1c9a1c11 + status: 200 OK + code: 200 + duration: 98.489974ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 371 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:39.141429Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic\", \"description\":\"basic description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "371" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 894163c6-3d33-4ea6-b12c-a0da210d4cf6 + status: 200 OK + code: 200 + duration: 61.553813ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 371 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:39.141429Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic\", \"description\":\"basic description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "371" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a389a4c1-4f64-4e4b-ae7b-3378a7ee1295 + status: 200 OK + code: 200 + duration: 45.273102ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 371 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:39.141429Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic\", \"description\":\"basic description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "371" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 96ad800c-0994-4e6f-86c5-92e0b4a7045e + status: 200 OK + code: 200 + duration: 80.35166ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 371 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:39.141429Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic\", \"description\":\"basic description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "371" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1b4c00f7-d5e1-4c76-9652-9a00341b4df8 + status: 200 OK + code: 200 + duration: 64.596519ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 87 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_iam_group_basic_renamed\",\"description\":\"basic description\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 369 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:41.880651Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic_renamed\", \"description\":\"basic description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "369" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - eece6078-9f74-459f-bd26-567dd03e5307 + status: 200 OK + code: 200 + duration: 108.662665ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 369 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:41.880651Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic_renamed\", \"description\":\"basic description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "369" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 54af6aab-43a6-43b6-9b40-f4168d88c0d0 + status: 200 OK + code: 200 + duration: 77.134784ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 369 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:41.880651Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic_renamed\", \"description\":\"basic description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "369" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2edadd4f-62a7-46b7-9576-ed3437c96de8 + status: 200 OK + code: 200 + duration: 61.57809ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 369 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:41.880651Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic_renamed\", \"description\":\"basic description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "369" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3148999f-9b7f-4934-8b1a-2b08dbc9d12a + status: 200 OK + code: 200 + duration: 52.428375ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 369 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:41.880651Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic_renamed\", \"description\":\"basic description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "369" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 575e14d1-ca72-4a28-8b5c-2795f59142ec + status: 200 OK + code: 200 + duration: 53.651612ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 369 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:41.880651Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic_renamed\", \"description\":\"basic description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "369" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c0647bea-4505-4c02-ad94-05b961aed75e + status: 200 OK + code: 200 + duration: 66.53738ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 107 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_iam_group_basic_renamed\",\"description\":\"this is another description\",\"tags\":[\"tf_tests\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 389 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:44.278553Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic_renamed\", \"description\":\"this is another description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "389" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f9392d0c-6951-4aec-92e1-75f91fd46475 + status: 200 OK + code: 200 + duration: 92.53826ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 389 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:44.278553Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic_renamed\", \"description\":\"this is another description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "389" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 96effb74-fa9b-46c0-800b-b9f20baec9a3 + status: 200 OK + code: 200 + duration: 102.695605ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 389 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:44.278553Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic_renamed\", \"description\":\"this is another description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "389" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2bf66774-39df-4500-80f6-ae0e4f11c4e2 + status: 200 OK + code: 200 + duration: 49.435288ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 389 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:44.278553Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic_renamed\", \"description\":\"this is another description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "389" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - cba335cf-2619-449e-8637-66b38d4ddad7 + status: 200 OK + code: 200 + duration: 53.346204ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 389 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:44.278553Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic_renamed\", \"description\":\"this is another description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "389" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 13363653-e842-4cfb-9afe-f59cb7a5f1c4 + status: 200 OK + code: 200 + duration: 54.297516ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 389 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:44.278553Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic_renamed\", \"description\":\"this is another description\", \"user_ids\":[], \"application_ids\":[], \"tags\":[\"tf_tests\"], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "389" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 14882d78-dfa6-413e-8aab-ee96537b9d2b + status: 200 OK + code: 200 + duration: 88.460742ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 70 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_iam_group_basic_renamed\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 352 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:46.916252Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic_renamed\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "352" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2c6e6182-6e19-4db5-80de-833016d4945f + status: 200 OK + code: 200 + duration: 121.001439ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 352 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:46.916252Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic_renamed\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "352" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 48bc247e-3e11-4521-be72-b420b1ab3a78 + status: 200 OK + code: 200 + duration: 49.33886ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 352 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:46.916252Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic_renamed\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "352" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 583c3dbd-71f2-4346-bebc-130aa72db1cf + status: 200 OK + code: 200 + duration: 89.975469ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 352 + body: "{\"id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\", \"created_at\":\"2025-11-17T17:10:36.668807Z\", \"updated_at\":\"2025-11-17T17:10:46.916252Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_basic_renamed\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "352" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f3cd9d08-c86d-449a-a74d-8e4de8f62612 + status: 200 OK + code: 200 + duration: 62.938122ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - cf87fbe2-35ed-40cc-9681-6f7326d31dc2 + status: 204 No Content + code: 204 + duration: 208.243988ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/3d752e6d-920c-42c0-9717-9676cea01d14 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 126 + body: "{\"message\":\"resource is not found\",\"resource\":\"group\",\"resource_id\":\"3d752e6d-920c-42c0-9717-9676cea01d14\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "126" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1347ee23-6d42-46fb-bad3-e74172060586 + status: 404 Not Found + code: 404 + duration: 54.254303ms diff --git a/internal/services/iam/testdata/group-membership-basic.cassette.yaml b/internal/services/iam/testdata/group-membership-basic.cassette.yaml index 4196758eb..a7bd7325f 100644 --- a/internal/services/iam/testdata/group-membership-basic.cassette.yaml +++ b/internal/services/iam/testdata/group-membership-basic.cassette.yaml @@ -1,1038 +1,721 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 130 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-tests-iam-group-membership-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 325 - uncompressed: false - body: '{"created_at":"2025-09-05T14:02:42.038432Z","deletable":true,"description":"","editable":true,"id":"7ba42631-17c5-49b4-823c-fff5a5635e57","managed":false,"name":"tf-tests-iam-group-membership-basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:02:42.038432Z"}' - headers: - Content-Length: - - "325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c2397afe-5929-490c-a7e4-3b9c34ad95af - status: 200 OK - code: 200 - duration: 494.714209ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 130 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-tests-iam-group-membership-basic","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-09-05T14:02:42.046010Z","deletable":true,"description":"","editable":true,"id":"c9831bca-d33a-4667-a1c1-e08702e3a961","managed":false,"name":"tf-tests-iam-group-membership-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:02:42.046010Z","user_ids":[]}' - headers: - Content-Length: - - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ad3d8be2-4af8-486a-af96-9402db7045cd - status: 200 OK - code: 200 - duration: 494.710709ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c9831bca-d33a-4667-a1c1-e08702e3a961 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-09-05T14:02:42.046010Z","deletable":true,"description":"","editable":true,"id":"c9831bca-d33a-4667-a1c1-e08702e3a961","managed":false,"name":"tf-tests-iam-group-membership-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:02:42.046010Z","user_ids":[]}' - headers: - Content-Length: - - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - df31b857-e328-4813-9606-906e24f2681e - status: 200 OK - code: 200 - duration: 232.121042ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/7ba42631-17c5-49b4-823c-fff5a5635e57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 325 - uncompressed: false - body: '{"created_at":"2025-09-05T14:02:42.038432Z","deletable":true,"description":"","editable":true,"id":"7ba42631-17c5-49b4-823c-fff5a5635e57","managed":false,"name":"tf-tests-iam-group-membership-basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:02:42.038432Z"}' - headers: - Content-Length: - - "325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1c56c514-108c-447c-beea-3bc06658ced2 - status: 200 OK - code: 200 - duration: 265.830208ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 57 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"7ba42631-17c5-49b4-823c-fff5a5635e57"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c9831bca-d33a-4667-a1c1-e08702e3a961/add-member - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 382 - uncompressed: false - body: '{"application_ids":["7ba42631-17c5-49b4-823c-fff5a5635e57"],"created_at":"2025-09-05T14:02:42.046010Z","deletable":true,"description":"","editable":true,"id":"c9831bca-d33a-4667-a1c1-e08702e3a961","managed":false,"name":"tf-tests-iam-group-membership-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:02:42.046010Z","user_ids":[]}' - headers: - Content-Length: - - "382" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ce73cae5-9f06-4244-8e58-e6f4ccdb60b5 - status: 200 OK - code: 200 - duration: 472.943625ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c9831bca-d33a-4667-a1c1-e08702e3a961 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 382 - uncompressed: false - body: '{"application_ids":["7ba42631-17c5-49b4-823c-fff5a5635e57"],"created_at":"2025-09-05T14:02:42.046010Z","deletable":true,"description":"","editable":true,"id":"c9831bca-d33a-4667-a1c1-e08702e3a961","managed":false,"name":"tf-tests-iam-group-membership-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:02:42.046010Z","user_ids":[]}' - headers: - Content-Length: - - "382" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 046a9c50-102c-471f-a44b-eccbfd1bbe0b - status: 200 OK - code: 200 - duration: 231.48375ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c9831bca-d33a-4667-a1c1-e08702e3a961 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 382 - uncompressed: false - body: '{"application_ids":["7ba42631-17c5-49b4-823c-fff5a5635e57"],"created_at":"2025-09-05T14:02:42.046010Z","deletable":true,"description":"","editable":true,"id":"c9831bca-d33a-4667-a1c1-e08702e3a961","managed":false,"name":"tf-tests-iam-group-membership-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:02:42.046010Z","user_ids":[]}' - headers: - Content-Length: - - "382" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 814ef4cd-882c-439d-8cd5-7a80aa383266 - status: 200 OK - code: 200 - duration: 254.410083ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/7ba42631-17c5-49b4-823c-fff5a5635e57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 325 - uncompressed: false - body: '{"created_at":"2025-09-05T14:02:42.038432Z","deletable":true,"description":"","editable":true,"id":"7ba42631-17c5-49b4-823c-fff5a5635e57","managed":false,"name":"tf-tests-iam-group-membership-basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:02:42.038432Z"}' - headers: - Content-Length: - - "325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 76a0c998-843e-4fa9-b0e3-9f801d30c22d - status: 200 OK - code: 200 - duration: 246.516041ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c9831bca-d33a-4667-a1c1-e08702e3a961 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 382 - uncompressed: false - body: '{"application_ids":["7ba42631-17c5-49b4-823c-fff5a5635e57"],"created_at":"2025-09-05T14:02:42.046010Z","deletable":true,"description":"","editable":true,"id":"c9831bca-d33a-4667-a1c1-e08702e3a961","managed":false,"name":"tf-tests-iam-group-membership-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:02:42.046010Z","user_ids":[]}' - headers: - Content-Length: - - "382" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cc9493d7-f77b-453a-a1e7-4bef6e3ce10f - status: 200 OK - code: 200 - duration: 249.902667ms - - id: 9 - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c9831bca-d33a-4667-a1c1-e08702e3a961 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 382 - uncompressed: false - body: '{"application_ids":["7ba42631-17c5-49b4-823c-fff5a5635e57"],"created_at":"2025-09-05T14:02:42.046010Z","deletable":true,"description":"","editable":true,"id":"c9831bca-d33a-4667-a1c1-e08702e3a961","managed":false,"name":"tf-tests-iam-group-membership-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:02:42.046010Z","user_ids":[]}' - headers: - Content-Length: - - "382" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 10b8d40a-ef5e-485f-acb2-38b0d1430a86 - status: 200 OK - code: 200 - duration: 239.969375ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c9831bca-d33a-4667-a1c1-e08702e3a961 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 382 - uncompressed: false - body: '{"application_ids":["7ba42631-17c5-49b4-823c-fff5a5635e57"],"created_at":"2025-09-05T14:02:42.046010Z","deletable":true,"description":"","editable":true,"id":"c9831bca-d33a-4667-a1c1-e08702e3a961","managed":false,"name":"tf-tests-iam-group-membership-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:02:42.046010Z","user_ids":[]}' - headers: - Content-Length: - - "382" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ed7679ca-5dc0-44d6-8efc-4243a03e5506 - status: 200 OK - code: 200 - duration: 216.23475ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c9831bca-d33a-4667-a1c1-e08702e3a961 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 382 - uncompressed: false - body: '{"application_ids":["7ba42631-17c5-49b4-823c-fff5a5635e57"],"created_at":"2025-09-05T14:02:42.046010Z","deletable":true,"description":"","editable":true,"id":"c9831bca-d33a-4667-a1c1-e08702e3a961","managed":false,"name":"tf-tests-iam-group-membership-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:02:42.046010Z","user_ids":[]}' - headers: - Content-Length: - - "382" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6e89cb2b-fa7d-4c00-bd41-619d13d512e0 - status: 200 OK - code: 200 - duration: 220.993459ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/7ba42631-17c5-49b4-823c-fff5a5635e57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 325 - uncompressed: false - body: '{"created_at":"2025-09-05T14:02:42.038432Z","deletable":true,"description":"","editable":true,"id":"7ba42631-17c5-49b4-823c-fff5a5635e57","managed":false,"name":"tf-tests-iam-group-membership-basic","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:02:42.038432Z"}' - headers: - Content-Length: - - "325" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 15ddded0-8110-4ec1-9496-aec97813d546 - status: 200 OK - code: 200 - duration: 265.541375ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c9831bca-d33a-4667-a1c1-e08702e3a961 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 382 - uncompressed: false - body: '{"application_ids":["7ba42631-17c5-49b4-823c-fff5a5635e57"],"created_at":"2025-09-05T14:02:42.046010Z","deletable":true,"description":"","editable":true,"id":"c9831bca-d33a-4667-a1c1-e08702e3a961","managed":false,"name":"tf-tests-iam-group-membership-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:02:42.046010Z","user_ids":[]}' - headers: - Content-Length: - - "382" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7fa959b1-4bc4-4785-b248-0e2875ea52b6 - status: 200 OK - code: 200 - duration: 264.94675ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c9831bca-d33a-4667-a1c1-e08702e3a961 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 382 - uncompressed: false - body: '{"application_ids":["7ba42631-17c5-49b4-823c-fff5a5635e57"],"created_at":"2025-09-05T14:02:42.046010Z","deletable":true,"description":"","editable":true,"id":"c9831bca-d33a-4667-a1c1-e08702e3a961","managed":false,"name":"tf-tests-iam-group-membership-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:02:42.046010Z","user_ids":[]}' - headers: - Content-Length: - - "382" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e072d521-c9cf-4e98-a37e-a10e2b19fcd7 - status: 200 OK - code: 200 - duration: 281.646208ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 57 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"7ba42631-17c5-49b4-823c-fff5a5635e57"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c9831bca-d33a-4667-a1c1-e08702e3a961/remove-member - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-09-05T14:02:42.046010Z","deletable":true,"description":"","editable":true,"id":"c9831bca-d33a-4667-a1c1-e08702e3a961","managed":false,"name":"tf-tests-iam-group-membership-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-09-05T14:02:42.046010Z","user_ids":[]}' - headers: - Content-Length: - - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9c070c20-d0c9-4144-a0b9-0bf0fc385611 - status: 200 OK - code: 200 - duration: 456.788333ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 57 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"7ba42631-17c5-49b4-823c-fff5a5635e57"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c9831bca-d33a-4667-a1c1-e08702e3a961/remove-member - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 121 - uncompressed: false - body: '{"message":"resource is not found","resource":"","resource_id":"7ba42631-17c5-49b4-823c-fff5a5635e57","type":"not_found"}' - headers: - Content-Length: - - "121" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 36c0bc4a-fb68-431b-9128-e1a1debb0a89 - status: 404 Not Found - code: 404 - duration: 554.489042ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c9831bca-d33a-4667-a1c1-e08702e3a961 - 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, 05 Sep 2025 14:02:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a2735bfc-6064-4d9f-b1af-3db7d49f1458 - status: 204 No Content - code: 204 - duration: 221.2805ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/7ba42631-17c5-49b4-823c-fff5a5635e57 - 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, 05 Sep 2025 14:02:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 515dca1c-0ff4-4c98-866d-2fc132232bd7 - status: 204 No Content - code: 204 - duration: 231.949542ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/c9831bca-d33a-4667-a1c1-e08702e3a961 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 126 - uncompressed: false - body: '{"message":"resource is not found","resource":"group","resource_id":"c9831bca-d33a-4667-a1c1-e08702e3a961","type":"not_found"}' - headers: - Content-Length: - - "126" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 060ba683-d7f3-4654-97ad-eda718ee7ceb - status: 404 Not Found - code: 404 - duration: 57.570667ms - - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/7ba42631-17c5-49b4-823c-fff5a5635e57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 132 - uncompressed: false - body: '{"message":"resource is not found","resource":"application","resource_id":"7ba42631-17c5-49b4-823c-fff5a5635e57","type":"not_found"}' - headers: - Content-Length: - - "132" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 14:02:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c9b5c5e1-d536-4759-99f5-e01d0b5d79ae - status: 404 Not Found - code: 404 - duration: 56.844833ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 130 + host: api.scaleway.com + body: "{\"name\":\"tf-tests-iam-group-membership-basic\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 335 + body: "{\"id\":\"01a09c7c-b2d9-4188-9cbd-d9915c057435\", \"name\":\"tf-tests-iam-group-membership-basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:35.966134Z\", \"updated_at\":\"2025-11-17T17:10:35.966134Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "335" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3ed4f84b-acb0-4e77-aeed-b12ff79e8200 + status: 200 OK + code: 200 + duration: 98.017234ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/01a09c7c-b2d9-4188-9cbd-d9915c057435 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 335 + body: "{\"id\":\"01a09c7c-b2d9-4188-9cbd-d9915c057435\", \"name\":\"tf-tests-iam-group-membership-basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:35.966134Z\", \"updated_at\":\"2025-11-17T17:10:35.966134Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "335" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 91c4efd5-9111-4b69-a3ac-9e3f290d174f + status: 200 OK + code: 200 + duration: 43.710767ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 130 + host: api.scaleway.com + body: "{\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"name\":\"tf-tests-iam-group-membership-basic\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 355 + body: "{\"id\":\"127d163c-9d46-4e92-879d-53f019ce1047\", \"created_at\":\"2025-11-17T17:10:36.063550Z\", \"updated_at\":\"2025-11-17T17:10:36.063550Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "355" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 78ca5f9c-e825-4094-9809-40830d1a2c3a + status: 200 OK + code: 200 + duration: 197.731028ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/127d163c-9d46-4e92-879d-53f019ce1047 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 355 + body: "{\"id\":\"127d163c-9d46-4e92-879d-53f019ce1047\", \"created_at\":\"2025-11-17T17:10:36.063550Z\", \"updated_at\":\"2025-11-17T17:10:36.063550Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "355" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d9862a16-59fb-49ce-9d37-ad27365404d2 + status: 200 OK + code: 200 + duration: 77.703862ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 57 + host: api.scaleway.com + body: "{\"application_id\":\"01a09c7c-b2d9-4188-9cbd-d9915c057435\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/127d163c-9d46-4e92-879d-53f019ce1047/add-member + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 393 + body: "{\"id\":\"127d163c-9d46-4e92-879d-53f019ce1047\", \"created_at\":\"2025-11-17T17:10:36.063550Z\", \"updated_at\":\"2025-11-17T17:10:36.063550Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"01a09c7c-b2d9-4188-9cbd-d9915c057435\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "393" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1b8a2d4a-0e8a-4228-bdea-e29063e955e0 + status: 200 OK + code: 200 + duration: 370.611053ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/127d163c-9d46-4e92-879d-53f019ce1047 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 393 + body: "{\"id\":\"127d163c-9d46-4e92-879d-53f019ce1047\", \"created_at\":\"2025-11-17T17:10:36.063550Z\", \"updated_at\":\"2025-11-17T17:10:36.063550Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"01a09c7c-b2d9-4188-9cbd-d9915c057435\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "393" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a12a2952-2215-4861-9d47-74e2607e5d41 + status: 200 OK + code: 200 + duration: 43.5842ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/127d163c-9d46-4e92-879d-53f019ce1047 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 393 + body: "{\"id\":\"127d163c-9d46-4e92-879d-53f019ce1047\", \"created_at\":\"2025-11-17T17:10:36.063550Z\", \"updated_at\":\"2025-11-17T17:10:36.063550Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"01a09c7c-b2d9-4188-9cbd-d9915c057435\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "393" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ea1cfcfe-d870-4c35-a5d7-9bd9de920a5d + status: 200 OK + code: 200 + duration: 44.455733ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/127d163c-9d46-4e92-879d-53f019ce1047 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 393 + body: "{\"id\":\"127d163c-9d46-4e92-879d-53f019ce1047\", \"created_at\":\"2025-11-17T17:10:36.063550Z\", \"updated_at\":\"2025-11-17T17:10:36.063550Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"01a09c7c-b2d9-4188-9cbd-d9915c057435\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "393" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 004a0a61-8967-48e1-bed8-8064e8534897 + status: 200 OK + code: 200 + duration: 90.358441ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/01a09c7c-b2d9-4188-9cbd-d9915c057435 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 335 + body: "{\"id\":\"01a09c7c-b2d9-4188-9cbd-d9915c057435\", \"name\":\"tf-tests-iam-group-membership-basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:35.966134Z\", \"updated_at\":\"2025-11-17T17:10:35.966134Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "335" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7835dc1f-b27d-4cdf-9494-0934ddc27e82 + status: 200 OK + code: 200 + duration: 103.112026ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/127d163c-9d46-4e92-879d-53f019ce1047 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 393 + body: "{\"id\":\"127d163c-9d46-4e92-879d-53f019ce1047\", \"created_at\":\"2025-11-17T17:10:36.063550Z\", \"updated_at\":\"2025-11-17T17:10:36.063550Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"01a09c7c-b2d9-4188-9cbd-d9915c057435\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "393" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c9d8b776-87ee-47bd-9c56-14e49db4b638 + status: 200 OK + code: 200 + duration: 64.19222ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/127d163c-9d46-4e92-879d-53f019ce1047 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 393 + body: "{\"id\":\"127d163c-9d46-4e92-879d-53f019ce1047\", \"created_at\":\"2025-11-17T17:10:36.063550Z\", \"updated_at\":\"2025-11-17T17:10:36.063550Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"01a09c7c-b2d9-4188-9cbd-d9915c057435\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "393" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b2e65afb-b0c7-4a5d-bffa-35c76107c477 + status: 200 OK + code: 200 + duration: 44.131369ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/01a09c7c-b2d9-4188-9cbd-d9915c057435 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 335 + body: "{\"id\":\"01a09c7c-b2d9-4188-9cbd-d9915c057435\", \"name\":\"tf-tests-iam-group-membership-basic\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:35.966134Z\", \"updated_at\":\"2025-11-17T17:10:35.966134Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "335" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6a69f764-c730-4e84-afdd-4acef8c4cc0a + status: 200 OK + code: 200 + duration: 52.69718ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/127d163c-9d46-4e92-879d-53f019ce1047 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 393 + body: "{\"id\":\"127d163c-9d46-4e92-879d-53f019ce1047\", \"created_at\":\"2025-11-17T17:10:36.063550Z\", \"updated_at\":\"2025-11-17T17:10:36.063550Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"01a09c7c-b2d9-4188-9cbd-d9915c057435\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "393" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0b1acb14-1f93-4120-8fd1-25e72db1ee98 + status: 200 OK + code: 200 + duration: 49.618848ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/127d163c-9d46-4e92-879d-53f019ce1047 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 393 + body: "{\"id\":\"127d163c-9d46-4e92-879d-53f019ce1047\", \"created_at\":\"2025-11-17T17:10:36.063550Z\", \"updated_at\":\"2025-11-17T17:10:36.063550Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"01a09c7c-b2d9-4188-9cbd-d9915c057435\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "393" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 4edec321-c1fc-4d72-8eca-073da5a75254 + status: 200 OK + code: 200 + duration: 71.352221ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/127d163c-9d46-4e92-879d-53f019ce1047 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 393 + body: "{\"id\":\"127d163c-9d46-4e92-879d-53f019ce1047\", \"created_at\":\"2025-11-17T17:10:36.063550Z\", \"updated_at\":\"2025-11-17T17:10:36.063550Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"01a09c7c-b2d9-4188-9cbd-d9915c057435\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "393" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0302e725-1aec-4030-b238-a610be68f66b + status: 200 OK + code: 200 + duration: 93.015362ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 57 + host: api.scaleway.com + body: "{\"application_id\":\"01a09c7c-b2d9-4188-9cbd-d9915c057435\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/127d163c-9d46-4e92-879d-53f019ce1047/remove-member + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 170 + body: "{\"current_state\":\"updating\",\"message\":\"resource is in a transient state\",\"resource\":\"group\",\"resource_id\":\"127d163c-9d46-4e92-879d-53f019ce1047\",\"type\":\"transient_state\"}" + headers: + Content-Length: + - "170" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 36f03601-db9e-459e-bc70-d85d80c907ee + status: 409 Conflict + code: 409 + duration: 111.59969ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 57 + host: api.scaleway.com + body: "{\"application_id\":\"01a09c7c-b2d9-4188-9cbd-d9915c057435\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/127d163c-9d46-4e92-879d-53f019ce1047/remove-member + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 355 + body: "{\"id\":\"127d163c-9d46-4e92-879d-53f019ce1047\", \"created_at\":\"2025-11-17T17:10:36.063550Z\", \"updated_at\":\"2025-11-17T17:10:36.063550Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-basic\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "355" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f0c7f1ed-6329-426e-9d6d-0bbbda160b73 + status: 200 OK + code: 200 + duration: 140.227422ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 57 + host: api.scaleway.com + body: "{\"application_id\":\"01a09c7c-b2d9-4188-9cbd-d9915c057435\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/127d163c-9d46-4e92-879d-53f019ce1047/remove-member + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 121 + body: "{\"message\":\"resource is not found\",\"resource\":\"\",\"resource_id\":\"01a09c7c-b2d9-4188-9cbd-d9915c057435\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "121" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0769492e-d41f-4da4-9d18-24a6ee3a0cd8 + status: 404 Not Found + code: 404 + duration: 355.23637ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/127d163c-9d46-4e92-879d-53f019ce1047 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d226d0f5-0bb5-402f-bc1d-a535ff6a7289 + status: 204 No Content + code: 204 + duration: 145.691047ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/01a09c7c-b2d9-4188-9cbd-d9915c057435 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ec6b1295-029e-4397-bff2-57e7c301c10a + status: 204 No Content + code: 204 + duration: 207.077625ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/127d163c-9d46-4e92-879d-53f019ce1047 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 126 + body: "{\"message\":\"resource is not found\",\"resource\":\"group\",\"resource_id\":\"127d163c-9d46-4e92-879d-53f019ce1047\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "126" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 29dea17b-ceba-4e1c-9c3b-15598b3fda83 + status: 404 Not Found + code: 404 + duration: 78.595587ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/01a09c7c-b2d9-4188-9cbd-d9915c057435 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 132 + body: "{\"message\":\"resource is not found\",\"resource\":\"application\",\"resource_id\":\"01a09c7c-b2d9-4188-9cbd-d9915c057435\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "132" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 42539d20-25f1-4174-aaea-c07777df9e7d + status: 404 Not Found + code: 404 + duration: 37.620716ms diff --git a/internal/services/iam/testdata/group-membership-user.cassette.yaml b/internal/services/iam/testdata/group-membership-user.cassette.yaml index 378b5ab2b..06f1ce7ed 100644 --- a/internal/services/iam/testdata/group-membership-user.cassette.yaml +++ b/internal/services/iam/testdata/group-membership-user.cassette.yaml @@ -1,742 +1,426 @@ --- 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:49 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: - - 7175ae10-3590-44c5-bb3c-df3eeb470827 - status: 200 OK - code: 200 - duration: 111.842291ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:49 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: - - a99bcf92-bfa3-4198-bda0-0e945495136f - status: 200 OK - code: 200 - duration: 160.634875ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 129 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-tests-iam-group-membership-user","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 354 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.618987Z","deletable":true,"description":"","editable":true,"id":"54afd2b1-e2eb-42df-986b-fa9472d3eb7d","managed":false,"name":"tf-tests-iam-group-membership-user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.618987Z","user_ids":[]}' - headers: - Content-Length: - - "354" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:50 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: - - 3be9cb3b-2a3c-480b-ac6d-180a6cd51366 - status: 200 OK - code: 200 - duration: 129.943625ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/54afd2b1-e2eb-42df-986b-fa9472d3eb7d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 354 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.618987Z","deletable":true,"description":"","editable":true,"id":"54afd2b1-e2eb-42df-986b-fa9472d3eb7d","managed":false,"name":"tf-tests-iam-group-membership-user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.618987Z","user_ids":[]}' - headers: - Content-Length: - - "354" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:50 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: - - ae5ff8e4-22c8-4c72-b420-6449c54ceaae - status: 200 OK - code: 200 - duration: 104.004666ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_id":"b6360d4f-831c-45a8-889e-0b65ed079e63"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/54afd2b1-e2eb-42df-986b-fa9472d3eb7d/add-member - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 392 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.618987Z","deletable":true,"description":"","editable":true,"id":"54afd2b1-e2eb-42df-986b-fa9472d3eb7d","managed":false,"name":"tf-tests-iam-group-membership-user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.618987Z","user_ids":["b6360d4f-831c-45a8-889e-0b65ed079e63"]}' - headers: - Content-Length: - - "392" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:50 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: - - 0b022790-f1b8-47d0-a821-38029ea99c2e - status: 200 OK - code: 200 - duration: 239.785292ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/54afd2b1-e2eb-42df-986b-fa9472d3eb7d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 392 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.618987Z","deletable":true,"description":"","editable":true,"id":"54afd2b1-e2eb-42df-986b-fa9472d3eb7d","managed":false,"name":"tf-tests-iam-group-membership-user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.618987Z","user_ids":["b6360d4f-831c-45a8-889e-0b65ed079e63"]}' - headers: - Content-Length: - - "392" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:51 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: - - b77d11d3-5c08-4179-8b42-e299dcb811bc - status: 200 OK - code: 200 - duration: 86.920833ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/54afd2b1-e2eb-42df-986b-fa9472d3eb7d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 392 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.618987Z","deletable":true,"description":"","editable":true,"id":"54afd2b1-e2eb-42df-986b-fa9472d3eb7d","managed":false,"name":"tf-tests-iam-group-membership-user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.618987Z","user_ids":["b6360d4f-831c-45a8-889e-0b65ed079e63"]}' - headers: - Content-Length: - - "392" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:51 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: - - a519db45-f70c-4c5d-940f-b6f388000882 - status: 200 OK - code: 200 - duration: 127.293417ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - 3fc20d8e-074d-4c09-a05a-a7b84ca4de58 - status: 200 OK - code: 200 - duration: 133.0085ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/54afd2b1-e2eb-42df-986b-fa9472d3eb7d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 392 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.618987Z","deletable":true,"description":"","editable":true,"id":"54afd2b1-e2eb-42df-986b-fa9472d3eb7d","managed":false,"name":"tf-tests-iam-group-membership-user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.618987Z","user_ids":["b6360d4f-831c-45a8-889e-0b65ed079e63"]}' - headers: - Content-Length: - - "392" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - 5d31c4b7-f9c3-4322-b8ce-2d8b68121ad2 - status: 200 OK - code: 200 - duration: 83.957167ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - 3dad2bb0-72b2-475c-8d58-5db3fe56859b - status: 200 OK - code: 200 - duration: 98.478875ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/54afd2b1-e2eb-42df-986b-fa9472d3eb7d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 392 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.618987Z","deletable":true,"description":"","editable":true,"id":"54afd2b1-e2eb-42df-986b-fa9472d3eb7d","managed":false,"name":"tf-tests-iam-group-membership-user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.618987Z","user_ids":["b6360d4f-831c-45a8-889e-0b65ed079e63"]}' - headers: - Content-Length: - - "392" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - 504ea7dd-16b4-4835-a4a1-cf2631d9c493 - status: 200 OK - code: 200 - duration: 90.368125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - e7c8376b-e151-4f3e-90f3-23b5e628e320 - status: 200 OK - code: 200 - duration: 155.537792ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_id":"b6360d4f-831c-45a8-889e-0b65ed079e63"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/54afd2b1-e2eb-42df-986b-fa9472d3eb7d/remove-member - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 354 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.618987Z","deletable":true,"description":"","editable":true,"id":"54afd2b1-e2eb-42df-986b-fa9472d3eb7d","managed":false,"name":"tf-tests-iam-group-membership-user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.618987Z","user_ids":[]}' - headers: - Content-Length: - - "354" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - eab3c15e-ac97-4bf5-a24f-53e068f63f29 - status: 200 OK - code: 200 - duration: 188.718208ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/54afd2b1-e2eb-42df-986b-fa9472d3eb7d - 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: - - Wed, 22 Jan 2025 15:32:54 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: - - 84264090-bc3c-41d9-970f-b5cd7a2f3239 - status: 204 No Content - code: 204 - duration: 101.583458ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/54afd2b1-e2eb-42df-986b-fa9472d3eb7d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 126 - uncompressed: false - body: '{"message":"resource is not found","resource":"group","resource_id":"54afd2b1-e2eb-42df-986b-fa9472d3eb7d","type":"not_found"}' - headers: - Content-Length: - - "126" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - 709e0d0b-48ff-4dc3-8f4c-57c407609602 - status: 404 Not Found - code: 404 - duration: 27.961167ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f0b0b3e9-1f8c-4286-bdf6-aa84e569f552 + status: 200 OK + code: 200 + duration: 186.925889ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 129 + host: api.scaleway.com + body: "{\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"name\":\"tf-tests-iam-group-membership-user\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 354 + body: "{\"id\":\"cb6b9218-1101-44de-8510-94db6582c458\", \"created_at\":\"2025-11-17T17:10:37.772008Z\", \"updated_at\":\"2025-11-17T17:10:37.772008Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-user\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "354" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3e015d33-f78f-46b6-9167-114cd315598c + status: 200 OK + code: 200 + duration: 190.94702ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/cb6b9218-1101-44de-8510-94db6582c458 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 354 + body: "{\"id\":\"cb6b9218-1101-44de-8510-94db6582c458\", \"created_at\":\"2025-11-17T17:10:37.772008Z\", \"updated_at\":\"2025-11-17T17:10:37.772008Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-user\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "354" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a27a6a64-398f-4549-bfd5-ebbf373972e0 + status: 200 OK + code: 200 + duration: 78.896244ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"user_id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/cb6b9218-1101-44de-8510-94db6582c458/add-member + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 392 + body: "{\"id\":\"cb6b9218-1101-44de-8510-94db6582c458\", \"created_at\":\"2025-11-17T17:10:37.772008Z\", \"updated_at\":\"2025-11-17T17:10:37.772008Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-user\", \"description\":\"\", \"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "392" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5fced319-97b4-4f55-9380-1ce9470fe1ac + status: 200 OK + code: 200 + duration: 390.394072ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/cb6b9218-1101-44de-8510-94db6582c458 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 392 + body: "{\"id\":\"cb6b9218-1101-44de-8510-94db6582c458\", \"created_at\":\"2025-11-17T17:10:37.772008Z\", \"updated_at\":\"2025-11-17T17:10:37.772008Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-user\", \"description\":\"\", \"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "392" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3e907b76-14e5-4e1a-ba06-4aecfad59b39 + status: 200 OK + code: 200 + duration: 92.961612ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/cb6b9218-1101-44de-8510-94db6582c458 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 392 + body: "{\"id\":\"cb6b9218-1101-44de-8510-94db6582c458\", \"created_at\":\"2025-11-17T17:10:37.772008Z\", \"updated_at\":\"2025-11-17T17:10:37.772008Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-user\", \"description\":\"\", \"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "392" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - df6e2a4a-9e70-4d05-a4e6-39fab98a8aff + status: 200 OK + code: 200 + duration: 57.908956ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ec663c1d-320e-4029-a068-4b83b92086a6 + status: 200 OK + code: 200 + duration: 153.794587ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/cb6b9218-1101-44de-8510-94db6582c458 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 392 + body: "{\"id\":\"cb6b9218-1101-44de-8510-94db6582c458\", \"created_at\":\"2025-11-17T17:10:37.772008Z\", \"updated_at\":\"2025-11-17T17:10:37.772008Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-user\", \"description\":\"\", \"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "392" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d10903d3-d8a2-41c6-bf9c-b046ea985df2 + status: 200 OK + code: 200 + duration: 39.767054ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e39d842b-ca42-4e7e-b83a-01f4eb56952e + status: 200 OK + code: 200 + duration: 158.656995ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/cb6b9218-1101-44de-8510-94db6582c458 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 392 + body: "{\"id\":\"cb6b9218-1101-44de-8510-94db6582c458\", \"created_at\":\"2025-11-17T17:10:37.772008Z\", \"updated_at\":\"2025-11-17T17:10:37.772008Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-user\", \"description\":\"\", \"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "392" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5d1be599-55a2-4127-9b89-de2a5bd7a7e4 + status: 200 OK + code: 200 + duration: 38.447317ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"user_id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/cb6b9218-1101-44de-8510-94db6582c458/remove-member + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 354 + body: "{\"id\":\"cb6b9218-1101-44de-8510-94db6582c458\", \"created_at\":\"2025-11-17T17:10:37.772008Z\", \"updated_at\":\"2025-11-17T17:10:37.772008Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-iam-group-membership-user\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "354" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 268f2202-4899-481d-8416-3da62ef914e6 + status: 200 OK + code: 200 + duration: 129.722918ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/cb6b9218-1101-44de-8510-94db6582c458 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d3235cba-afc7-4dee-99c2-a7fe1f8d2ec1 + status: 204 No Content + code: 204 + duration: 147.249923ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/cb6b9218-1101-44de-8510-94db6582c458 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 126 + body: "{\"message\":\"resource is not found\",\"resource\":\"group\",\"resource_id\":\"cb6b9218-1101-44de-8510-94db6582c458\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "126" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e0f7a858-0979-45f1-8847-f5cc62053fa1 + status: 404 Not Found + code: 404 + duration: 87.150623ms diff --git a/internal/services/iam/testdata/group-users-and-applications.cassette.yaml b/internal/services/iam/testdata/group-users-and-applications.cassette.yaml index 1b3ef39fd..dcd4bbe95 100644 --- a/internal/services/iam/testdata/group-users-and-applications.cassette.yaml +++ b/internal/services/iam/testdata/group-users-and-applications.cassette.yaml @@ -1,4280 +1,2427 @@ --- 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - aaa756d5-7ef8-4ee1-8271-13cf4ef603b3 - status: 200 OK - code: 200 - duration: 98.298333ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - bf66d5f1-f019-4cf5-b678-1dc93658a391 - status: 200 OK - code: 200 - duration: 84.618291ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 118 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_iam_group_app3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:46.865911Z","deletable":true,"description":"","editable":true,"id":"3ffd1ea1-d66e-4d85-827c-9fd0cefd8552","managed":false,"name":"tf_tests_iam_group_app3","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:46.865911Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:46 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: - - 2214ac3e-5899-429c-a2ce-f1d5989a4c94 - status: 200 OK - code: 200 - duration: 126.235459ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/3ffd1ea1-d66e-4d85-827c-9fd0cefd8552 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:46.865911Z","deletable":true,"description":"","editable":true,"id":"3ffd1ea1-d66e-4d85-827c-9fd0cefd8552","managed":false,"name":"tf_tests_iam_group_app3","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:46.865911Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:46 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: - - 120768eb-b096-4513-a0ca-db0ffb2013b9 - status: 200 OK - code: 200 - duration: 95.222625ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 122 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf_tests_iam_group_user_app","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 347 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":[]}' - headers: - Content-Length: - - "347" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - f83ac986-1701-44f1-97fa-3f65345b09e0 - status: 200 OK - code: 200 - duration: 133.055333ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 112 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0"],"application_ids":["3ffd1ea1-d66e-4d85-827c-9fd0cefd8552"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022/members - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 425 - uncompressed: false - body: '{"application_ids":["3ffd1ea1-d66e-4d85-827c-9fd0cefd8552"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":false,"description":"","editable":false,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "425" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 2f6b9456-0e7f-45e5-be2b-0a3494f9a0fc - status: 200 OK - code: 200 - duration: 196.625125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"application_ids":["3ffd1ea1-d66e-4d85-827c-9fd0cefd8552"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - b20b5c4b-66aa-4ca2-86ec-4e2f0f38be19 - status: 200 OK - code: 200 - duration: 109.315ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"application_ids":["3ffd1ea1-d66e-4d85-827c-9fd0cefd8552"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - b51fd72d-fcde-48c5-806e-d363b8b41ae4 - status: 200 OK - code: 200 - duration: 107.074458ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - 584990d8-02f4-42ec-91e4-72728782f7fc - status: 200 OK - code: 200 - duration: 118.398875ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/3ffd1ea1-d66e-4d85-827c-9fd0cefd8552 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:46.865911Z","deletable":true,"description":"","editable":true,"id":"3ffd1ea1-d66e-4d85-827c-9fd0cefd8552","managed":false,"name":"tf_tests_iam_group_app3","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:46.865911Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - 931ac5b4-d2d4-4e73-a1ad-ee021c95c3a9 - status: 200 OK - code: 200 - duration: 94.257792ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - 0420a6e5-6e61-43ed-96eb-2609b934b1c5 - status: 200 OK - code: 200 - duration: 107.180375ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"application_ids":["3ffd1ea1-d66e-4d85-827c-9fd0cefd8552"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:49 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: - - 784099be-360d-4e25-99d8-ffa4180fcb6b - status: 200 OK - code: 200 - duration: 93.417709ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:49 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: - - 6c0c59d4-a71c-4f7d-b47c-47f461b3f3c4 - status: 200 OK - code: 200 - duration: 97.912042ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/3ffd1ea1-d66e-4d85-827c-9fd0cefd8552 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:46.865911Z","deletable":true,"description":"","editable":true,"id":"3ffd1ea1-d66e-4d85-827c-9fd0cefd8552","managed":false,"name":"tf_tests_iam_group_app3","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:46.865911Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:50 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: - - b19f974e-af28-4a48-8371-93f03365433b - status: 200 OK - code: 200 - duration: 105.6135ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"application_ids":["3ffd1ea1-d66e-4d85-827c-9fd0cefd8552"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:50 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: - - 914e4d8b-fe00-47f0-916d-66e39d36c824 - status: 200 OK - code: 200 - duration: 97.263875ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 118 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_iam_group_app4","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:52.224242Z","deletable":true,"description":"","editable":true,"id":"11e1e061-b6e7-4127-ad10-13e5f7154428","managed":false,"name":"tf_tests_iam_group_app4","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:52.224242Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - c61af8c5-a09f-446d-bc03-7ff2b21d4a47 - status: 200 OK - code: 200 - duration: 122.911792ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/11e1e061-b6e7-4127-ad10-13e5f7154428 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:52.224242Z","deletable":true,"description":"","editable":true,"id":"11e1e061-b6e7-4127-ad10-13e5f7154428","managed":false,"name":"tf_tests_iam_group_app4","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:52.224242Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - 80f43d8e-4acd-489e-b507-d25100e4bf50 - status: 200 OK - code: 200 - duration: 119.27875ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"application_ids":["3ffd1ea1-d66e-4d85-827c-9fd0cefd8552"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - 55e95a34-5778-46f8-a5c3-5013b3a97fec - status: 200 OK - code: 200 - duration: 91.274417ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_ids":[],"application_ids":["11e1e061-b6e7-4127-ad10-13e5f7154428","3ffd1ea1-d66e-4d85-827c-9fd0cefd8552"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022/members - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 427 - uncompressed: false - body: '{"application_ids":["11e1e061-b6e7-4127-ad10-13e5f7154428","3ffd1ea1-d66e-4d85-827c-9fd0cefd8552"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":false,"description":"","editable":false,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":[]}' - headers: - Content-Length: - - "427" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - 6760714e-24ec-4d4e-a0de-ad9c7a466f45 - status: 200 OK - code: 200 - duration: 155.061ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 425 - uncompressed: false - body: '{"application_ids":["3ffd1ea1-d66e-4d85-827c-9fd0cefd8552","11e1e061-b6e7-4127-ad10-13e5f7154428"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":[]}' - headers: - Content-Length: - - "425" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - bbbadb31-d00f-4d35-aa8d-288d9eb6d575 - status: 200 OK - code: 200 - duration: 83.472709ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 425 - uncompressed: false - body: '{"application_ids":["3ffd1ea1-d66e-4d85-827c-9fd0cefd8552","11e1e061-b6e7-4127-ad10-13e5f7154428"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":[]}' - headers: - Content-Length: - - "425" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - 3f1d2bd2-1f28-4cad-8a7f-9e29ed460aa5 - status: 200 OK - code: 200 - duration: 87.210916ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/11e1e061-b6e7-4127-ad10-13e5f7154428 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:52.224242Z","deletable":true,"description":"","editable":true,"id":"11e1e061-b6e7-4127-ad10-13e5f7154428","managed":false,"name":"tf_tests_iam_group_app4","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:52.224242Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - 4a7e2d41-be96-4e4e-80dd-c99fa33c9272 - status: 200 OK - code: 200 - duration: 99.983334ms - - id: 22 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/3ffd1ea1-d66e-4d85-827c-9fd0cefd8552 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:46.865911Z","deletable":true,"description":"","editable":true,"id":"3ffd1ea1-d66e-4d85-827c-9fd0cefd8552","managed":false,"name":"tf_tests_iam_group_app3","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:46.865911Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - 658dd6f5-60d2-4b17-a571-caa917a8250e - status: 200 OK - code: 200 - duration: 127.941958ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 425 - uncompressed: false - body: '{"application_ids":["3ffd1ea1-d66e-4d85-827c-9fd0cefd8552","11e1e061-b6e7-4127-ad10-13e5f7154428"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":[]}' - headers: - Content-Length: - - "425" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - d0475f99-5128-40de-87e9-611fcd5e3e1e - status: 200 OK - code: 200 - duration: 93.0655ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/3ffd1ea1-d66e-4d85-827c-9fd0cefd8552 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:46.865911Z","deletable":true,"description":"","editable":true,"id":"3ffd1ea1-d66e-4d85-827c-9fd0cefd8552","managed":false,"name":"tf_tests_iam_group_app3","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:46.865911Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 5d8c49a3-fd93-40e6-802d-1d063e566c11 - status: 200 OK - code: 200 - duration: 90.308833ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 85e1e8ab-c508-4c88-ac6c-93dbddc0b4a5 - status: 200 OK - code: 200 - duration: 105.80525ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/11e1e061-b6e7-4127-ad10-13e5f7154428 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:52.224242Z","deletable":true,"description":"","editable":true,"id":"11e1e061-b6e7-4127-ad10-13e5f7154428","managed":false,"name":"tf_tests_iam_group_app4","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:52.224242Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 399b07e7-3201-4054-aae3-e2838fb2c456 - status: 200 OK - code: 200 - duration: 95.583875ms - - id: 27 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 495 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-01-07T13:38:53.442895Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "495" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 171efd3a-a70f-495b-b4b4-19cef9e83e80 - status: 200 OK - code: 200 - duration: 115.117958ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 425 - uncompressed: false - body: '{"application_ids":["3ffd1ea1-d66e-4d85-827c-9fd0cefd8552","11e1e061-b6e7-4127-ad10-13e5f7154428"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":[]}' - headers: - Content-Length: - - "425" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 49f08a81-a690-432c-a15c-bb89914061d5 - status: 200 OK - code: 200 - duration: 109.923083ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 495 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-01-07T13:38:53.442895Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "495" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:56 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: - - 65d2f747-6b0c-4c86-bc5c-19b972997963 - status: 200 OK - code: 200 - duration: 112.466541ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:56 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: - - e401c065-dc86-43eb-90fd-2801be7ce7d4 - status: 200 OK - code: 200 - duration: 134.974542ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 425 - uncompressed: false - body: '{"application_ids":["3ffd1ea1-d66e-4d85-827c-9fd0cefd8552","11e1e061-b6e7-4127-ad10-13e5f7154428"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":[]}' - headers: - Content-Length: - - "425" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 3fa6cad3-1801-4f2c-873e-e66736172d6a - status: 200 OK - code: 200 - duration: 94.534167ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 151 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_ids":["b6360d4f-831c-45a8-889e-0b65ed079e63","ef29ce05-3f2b-4fa0-a259-d76110850d57"],"application_ids":["11e1e061-b6e7-4127-ad10-13e5f7154428"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022/members - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 465 - uncompressed: false - body: '{"application_ids":["11e1e061-b6e7-4127-ad10-13e5f7154428"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":false,"description":"","editable":false,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["b6360d4f-831c-45a8-889e-0b65ed079e63","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}' - headers: - Content-Length: - - "465" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 33eed41d-93e8-4773-89e2-8b8583e8f960 - status: 200 OK - code: 200 - duration: 204.271208ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 463 - uncompressed: false - body: '{"application_ids":["11e1e061-b6e7-4127-ad10-13e5f7154428"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["ef29ce05-3f2b-4fa0-a259-d76110850d57","b6360d4f-831c-45a8-889e-0b65ed079e63"]}' - headers: - Content-Length: - - "463" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - a500410b-4918-49e6-ad3e-cff62a947964 - status: 200 OK - code: 200 - duration: 110.382917ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 463 - uncompressed: false - body: '{"application_ids":["11e1e061-b6e7-4127-ad10-13e5f7154428"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["ef29ce05-3f2b-4fa0-a259-d76110850d57","b6360d4f-831c-45a8-889e-0b65ed079e63"]}' - headers: - Content-Length: - - "463" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 489d9af3-01dd-41f9-8f7d-2508f42c860e - status: 200 OK - code: 200 - duration: 88.008292ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:58 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: - - 9caa1601-14de-45a3-9da2-1b31fe1d74df - status: 200 OK - code: 200 - duration: 93.548042ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 495 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-01-07T13:38:53.442895Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "495" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:58 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: - - 17adeb0b-a66a-41d6-b993-bab6c764d7a9 - status: 200 OK - code: 200 - duration: 94.057958ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/11e1e061-b6e7-4127-ad10-13e5f7154428 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:52.224242Z","deletable":true,"description":"","editable":true,"id":"11e1e061-b6e7-4127-ad10-13e5f7154428","managed":false,"name":"tf_tests_iam_group_app4","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:52.224242Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - 6596dbc3-0eeb-4345-96d8-c09c9aa849c9 - status: 200 OK - code: 200 - duration: 82.205167ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 495 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-01-07T13:38:53.442895Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "495" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - 97ba6f61-a369-4de7-91b6-e7c0651c7898 - status: 200 OK - code: 200 - duration: 94.321792ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - ca30f083-2caf-478c-82cb-08d861b78472 - status: 200 OK - code: 200 - duration: 94.44025ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/3ffd1ea1-d66e-4d85-827c-9fd0cefd8552 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:46.865911Z","deletable":true,"description":"","editable":true,"id":"3ffd1ea1-d66e-4d85-827c-9fd0cefd8552","managed":false,"name":"tf_tests_iam_group_app3","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:46.865911Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - dd28b398-0b3a-4eba-85c4-326d191fd093 - status: 200 OK - code: 200 - duration: 87.7095ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 463 - uncompressed: false - body: '{"application_ids":["11e1e061-b6e7-4127-ad10-13e5f7154428"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["ef29ce05-3f2b-4fa0-a259-d76110850d57","b6360d4f-831c-45a8-889e-0b65ed079e63"]}' - headers: - Content-Length: - - "463" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - a6adaaa2-aaae-4b75-9db8-624a1d9b07e3 - status: 200 OK - code: 200 - duration: 107.061625ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - 29c8ae15-29c2-4ad8-bba2-4329ebef50e6 - status: 200 OK - code: 200 - duration: 73.384625ms - - id: 43 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 495 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-01-07T13:38:53.442895Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "495" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:00 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: - - 05c771be-6ebe-4b69-a539-4104434db813 - status: 200 OK - code: 200 - duration: 117.023083ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 495 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-01-07T13:38:53.442895Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "495" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:00 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: - - c41504df-9ef3-4be6-b9a8-1cbfea52d660 - status: 200 OK - code: 200 - duration: 112.179167ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/11e1e061-b6e7-4127-ad10-13e5f7154428 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:52.224242Z","deletable":true,"description":"","editable":true,"id":"11e1e061-b6e7-4127-ad10-13e5f7154428","managed":false,"name":"tf_tests_iam_group_app4","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:52.224242Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:00 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: - - 3da6d878-8cbc-4328-a67d-b90a97ca6e8e - status: 200 OK - code: 200 - duration: 91.098334ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:00 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: - - 05024079-3389-4cf0-8f12-63821876bb49 - status: 200 OK - code: 200 - duration: 114.625625ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/3ffd1ea1-d66e-4d85-827c-9fd0cefd8552 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:46.865911Z","deletable":true,"description":"","editable":true,"id":"3ffd1ea1-d66e-4d85-827c-9fd0cefd8552","managed":false,"name":"tf_tests_iam_group_app3","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:46.865911Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:00 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: - - f7775aaf-a663-4322-974d-e3c50f7cf034 - status: 200 OK - code: 200 - duration: 104.920125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:00 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: - - 3f3a9e0b-e8f5-49e0-8504-ae57b8caefc5 - status: 200 OK - code: 200 - duration: 125.400708ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 463 - uncompressed: false - body: '{"application_ids":["11e1e061-b6e7-4127-ad10-13e5f7154428"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["ef29ce05-3f2b-4fa0-a259-d76110850d57","b6360d4f-831c-45a8-889e-0b65ed079e63"]}' - headers: - Content-Length: - - "463" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:01 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: - - e33bb91d-24e7-4f51-b882-e36d019dc498 - status: 200 OK - code: 200 - duration: 95.253833ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:01 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: - - 4558ee28-8006-45f7-8e38-a2c6c4ff8e40 - status: 200 OK - code: 200 - duration: 93.680125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:01 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: - - b80e3d3c-0856-4676-8580-ce57aedb1d9d - status: 200 OK - code: 200 - duration: 107.543834ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 495 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-01-07T13:38:53.442895Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "495" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:01 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: - - a26bfd58-3973-4265-a4c1-999966291cbc - status: 200 OK - code: 200 - duration: 114.3405ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 463 - uncompressed: false - body: '{"application_ids":["11e1e061-b6e7-4127-ad10-13e5f7154428"],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["ef29ce05-3f2b-4fa0-a259-d76110850d57","b6360d4f-831c-45a8-889e-0b65ed079e63"]}' - headers: - Content-Length: - - "463" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:02 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: - - afe9500d-bd05-4a15-9167-449679ef624e - status: 200 OK - code: 200 - duration: 97.563541ms - - id: 54 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 152 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_ids":["b6360d4f-831c-45a8-889e-0b65ed079e63","ef29ce05-3f2b-4fa0-a259-d76110850d57","84d20ae1-9650-419a-ab74-7ab09b6262e0"],"application_ids":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022/members - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 467 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:47.125654Z","deletable":false,"description":"","editable":false,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["b6360d4f-831c-45a8-889e-0b65ed079e63","ef29ce05-3f2b-4fa0-a259-d76110850d57","84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "467" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:02 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: - - 164df84f-5870-4a5a-8ccc-dd30952652ab - status: 200 OK - code: 200 - duration: 155.445333ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 465 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["ef29ce05-3f2b-4fa0-a259-d76110850d57","b6360d4f-831c-45a8-889e-0b65ed079e63","84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "465" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:02 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: - - 88d8fe95-9fa1-494e-b654-6352b886b245 - status: 200 OK - code: 200 - duration: 83.666792ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 465 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["ef29ce05-3f2b-4fa0-a259-d76110850d57","b6360d4f-831c-45a8-889e-0b65ed079e63","84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "465" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:03 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: - - f70139bb-61f0-48fa-b390-6784bbb2ed07 - status: 200 OK - code: 200 - duration: 117.364542ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:03 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: - - d6b5c42f-a037-4ffe-801b-0240cf9ceb7b - status: 200 OK - code: 200 - duration: 93.102042ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 495 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-01-07T13:38:53.442895Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "495" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:03 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: - - 8efc6c5a-4c19-497a-83e1-6030173854f8 - status: 200 OK - code: 200 - duration: 91.976292ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:03 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: - - 99667033-bc8d-4c4e-8d53-45de169106b2 - status: 200 OK - code: 200 - duration: 93.081625ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/3ffd1ea1-d66e-4d85-827c-9fd0cefd8552 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:46.865911Z","deletable":true,"description":"","editable":true,"id":"3ffd1ea1-d66e-4d85-827c-9fd0cefd8552","managed":false,"name":"tf_tests_iam_group_app3","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:46.865911Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:04 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: - - f46009dd-a7ef-4050-9755-a6087b7b45fe - status: 200 OK - code: 200 - duration: 81.699417ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:04 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: - - bdc25ac0-b009-4438-a631-269e4d6353f4 - status: 200 OK - code: 200 - duration: 124.278042ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/11e1e061-b6e7-4127-ad10-13e5f7154428 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:52.224242Z","deletable":true,"description":"","editable":true,"id":"11e1e061-b6e7-4127-ad10-13e5f7154428","managed":false,"name":"tf_tests_iam_group_app4","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:52.224242Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:04 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: - - c7943b33-c045-4b81-b28e-571f9be56aa0 - status: 200 OK - code: 200 - duration: 112.806583ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:04 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: - - 27401979-f850-4c41-8b76-2500aa479f1e - status: 200 OK - code: 200 - duration: 128.493ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 495 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-01-07T13:38:53.442895Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "495" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:04 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: - - 08585740-cc23-406b-b597-eec40cd5ada3 - status: 200 OK - code: 200 - duration: 133.691416ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 465 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["ef29ce05-3f2b-4fa0-a259-d76110850d57","b6360d4f-831c-45a8-889e-0b65ed079e63","84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "465" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:04 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: - - dce4d82f-203d-4265-92b3-6d4a333fed00 - status: 200 OK - code: 200 - duration: 125.329875ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 495 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-01-07T13:38:53.442895Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "495" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:05 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: - - 3c3fe9ac-ff02-4ef7-87a9-249b5ad672db - status: 200 OK - code: 200 - duration: 487.158458ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:05 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: - - 83e94436-4cd7-428f-be47-cf92a9f5fc43 - status: 200 OK - code: 200 - duration: 569.815625ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:05 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: - - 89850ec0-a84b-4792-b0b2-88b1709a0048 - status: 200 OK - code: 200 - duration: 578.419417ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/3ffd1ea1-d66e-4d85-827c-9fd0cefd8552 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:46.865911Z","deletable":true,"description":"","editable":true,"id":"3ffd1ea1-d66e-4d85-827c-9fd0cefd8552","managed":false,"name":"tf_tests_iam_group_app3","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:46.865911Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:06 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: - - a027b81d-8498-4930-a8cc-330b8a47c7da - status: 200 OK - code: 200 - duration: 202.338541ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/11e1e061-b6e7-4127-ad10-13e5f7154428 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:52.224242Z","deletable":true,"description":"","editable":true,"id":"11e1e061-b6e7-4127-ad10-13e5f7154428","managed":false,"name":"tf_tests_iam_group_app4","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:52.224242Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:06 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: - - 28e45f55-86fc-449d-966b-9287034cfe04 - status: 200 OK - code: 200 - duration: 201.469583ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 465 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["ef29ce05-3f2b-4fa0-a259-d76110850d57","b6360d4f-831c-45a8-889e-0b65ed079e63","84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "465" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:06 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: - - 1a0fff3b-f2b9-4dd4-a8de-1c99074d17a0 - status: 200 OK - code: 200 - duration: 298.24825ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 465 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["ef29ce05-3f2b-4fa0-a259-d76110850d57","b6360d4f-831c-45a8-889e-0b65ed079e63","84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "465" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 6e443174-0bf5-4475-b6ae-2991051c7c07 - status: 200 OK - code: 200 - duration: 117.872916ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_id":"ef29ce05-3f2b-4fa0-a259-d76110850d57"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022/remove-member - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 425 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["b6360d4f-831c-45a8-889e-0b65ed079e63","84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "425" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - d1a1d006-0b03-4d89-b905-36c0549dc001 - status: 200 OK - code: 200 - duration: 211.26825ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_id":"b6360d4f-831c-45a8-889e-0b65ed079e63"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022/remove-member - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 385 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "385" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 48abbd4f-f6e9-4236-ab32-8aa88077c852 - status: 200 OK - code: 200 - duration: 183.498333ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_id":"84d20ae1-9650-419a-ab74-7ab09b6262e0"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022/remove-member - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 347 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":[]}' - headers: - Content-Length: - - "347" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - b519dbdb-1f0e-434a-a909-4e0538ebb018 - status: 200 OK - code: 200 - duration: 205.068833ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 347 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":[]}' - headers: - Content-Length: - - "347" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - e5506047-5254-4fc1-bc71-5fef17688416 - status: 200 OK - code: 200 - duration: 104.9595ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 347 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":[]}' - headers: - Content-Length: - - "347" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 2d3410e2-c788-461b-a017-71df52a5838e - status: 200 OK - code: 200 - duration: 114.673417ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/11e1e061-b6e7-4127-ad10-13e5f7154428 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:52.224242Z","deletable":true,"description":"","editable":true,"id":"11e1e061-b6e7-4127-ad10-13e5f7154428","managed":false,"name":"tf_tests_iam_group_app4","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:52.224242Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 9fdf5a7d-8036-400b-a6a2-7b2d420936d3 - status: 200 OK - code: 200 - duration: 92.688708ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 347 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:47.125654Z","deletable":true,"description":"","editable":true,"id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","managed":false,"name":"tf_tests_iam_group_user_app","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:47.125654Z","user_ids":[]}' - headers: - Content-Length: - - "347" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - a9d51acd-f286-4057-9077-2b35550f4e4d - status: 200 OK - code: 200 - duration: 96.852459ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/3ffd1ea1-d66e-4d85-827c-9fd0cefd8552 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 323 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:46.865911Z","deletable":true,"description":"","editable":true,"id":"3ffd1ea1-d66e-4d85-827c-9fd0cefd8552","managed":false,"name":"tf_tests_iam_group_app3","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:46.865911Z"}' - headers: - Content-Length: - - "323" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - e9396a04-cc8e-4466-928e-18ecf8a6a7de - status: 200 OK - code: 200 - duration: 124.564583ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - 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: - - Wed, 22 Jan 2025 15:33: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: - - 36b59770-f484-40b0-947d-e8652c2d1cc0 - status: 204 No Content - code: 204 - duration: 296.221583ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/3ffd1ea1-d66e-4d85-827c-9fd0cefd8552 - 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: - - Wed, 22 Jan 2025 15:33: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: - - d5284812-bb82-488b-954d-b78c167779ed - status: 204 No Content - code: 204 - duration: 307.298333ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/11e1e061-b6e7-4127-ad10-13e5f7154428 - 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: - - Wed, 22 Jan 2025 15:33: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: - - bfea4695-7f46-413c-a4b9-808bed2959c8 - status: 204 No Content - code: 204 - duration: 307.383375ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/ec3fd816-3e30-4eed-80e2-0bd5afa27022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 126 - uncompressed: false - body: '{"message":"resource is not found","resource":"group","resource_id":"ec3fd816-3e30-4eed-80e2-0bd5afa27022","type":"not_found"}' - headers: - Content-Length: - - "126" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 03dcdc0f-2cec-4e02-b6ba-1d5abf64fe83 - status: 404 Not Found - code: 404 - duration: 29.6225ms - - id: 85 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/3ffd1ea1-d66e-4d85-827c-9fd0cefd8552 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 132 - uncompressed: false - body: '{"message":"resource is not found","resource":"application","resource_id":"3ffd1ea1-d66e-4d85-827c-9fd0cefd8552","type":"not_found"}' - headers: - Content-Length: - - "132" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - b3c8241c-595f-45fa-be96-2de25b629832 - status: 404 Not Found - code: 404 - duration: 27.495584ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/11e1e061-b6e7-4127-ad10-13e5f7154428 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 132 - uncompressed: false - body: '{"message":"resource is not found","resource":"application","resource_id":"11e1e061-b6e7-4127-ad10-13e5f7154428","type":"not_found"}' - headers: - Content-Length: - - "132" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - eb8ba1ac-e4ad-419a-a77a-29b96a7d7437 - status: 404 Not Found - code: 404 - duration: 21.281084ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6108242b-02ad-4ba4-9d2d-ad0a8f59b6fa + status: 200 OK + code: 200 + duration: 72.586228ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_iam_group_app3\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"f0367957-71da-4578-9215-444922cc7683\", \"name\":\"tf_tests_iam_group_app3\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:42.412259Z\", \"updated_at\":\"2025-11-17T17:10:42.412259Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 814663e3-4507-4f5f-9355-edb27b29507d + status: 200 OK + code: 200 + duration: 232.02836ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/f0367957-71da-4578-9215-444922cc7683 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"f0367957-71da-4578-9215-444922cc7683\", \"name\":\"tf_tests_iam_group_app3\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:42.412259Z\", \"updated_at\":\"2025-11-17T17:10:42.412259Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2f87c20f-bbf4-46f2-a424-1814d7c08670 + status: 200 OK + code: 200 + duration: 47.58519ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 122 + host: api.scaleway.com + body: "{\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"name\":\"tf_tests_iam_group_user_app\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 347 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "347" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3bd9e2a7-3329-4939-a808-36d57bba5067 + status: 200 OK + code: 200 + duration: 223.065457ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 112 + host: api.scaleway.com + body: "{\"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"],\"application_ids\":[\"f0367957-71da-4578-9215-444922cc7683\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c/members + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"], \"application_ids\":[\"f0367957-71da-4578-9215-444922cc7683\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "423" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f8cd4c31-7c79-48d2-8115-b825ec475523 + status: 200 OK + code: 200 + duration: 121.913413ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"], \"application_ids\":[\"f0367957-71da-4578-9215-444922cc7683\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "423" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8ede8c65-f473-4b34-abc3-ebe0823389bf + status: 200 OK + code: 200 + duration: 66.339359ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"], \"application_ids\":[\"f0367957-71da-4578-9215-444922cc7683\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "423" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - bdf5a99d-e5a8-4cec-8f03-545802a643a5 + status: 200 OK + code: 200 + duration: 58.25221ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - eaaa8d3a-7f3b-4cc3-9a2c-df498a34acae + status: 200 OK + code: 200 + duration: 183.050682ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d90a7f34-5eb3-4f4b-ba71-e5e516eb5ae3 + status: 200 OK + code: 200 + duration: 64.955498ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/f0367957-71da-4578-9215-444922cc7683 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"f0367957-71da-4578-9215-444922cc7683\", \"name\":\"tf_tests_iam_group_app3\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:42.412259Z\", \"updated_at\":\"2025-11-17T17:10:42.412259Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 008a5b54-44dc-44b5-98bc-7a87851d848e + status: 200 OK + code: 200 + duration: 64.246919ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"], \"application_ids\":[\"f0367957-71da-4578-9215-444922cc7683\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "423" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6d05b659-1091-4d6d-a029-7bb39204e84e + status: 200 OK + code: 200 + duration: 67.663262ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/f0367957-71da-4578-9215-444922cc7683 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"f0367957-71da-4578-9215-444922cc7683\", \"name\":\"tf_tests_iam_group_app3\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:42.412259Z\", \"updated_at\":\"2025-11-17T17:10:42.412259Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - aefded26-e2a8-4e83-a21f-564f10d27118 + status: 200 OK + code: 200 + duration: 54.000057ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"], \"application_ids\":[\"f0367957-71da-4578-9215-444922cc7683\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "423" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 63eb5589-74ee-4f3d-b71c-3634305a3acc + status: 200 OK + code: 200 + duration: 82.501852ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_iam_group_app4\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"7f498de5-9a44-431a-b317-95a001162da9\", \"name\":\"tf_tests_iam_group_app4\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:45.734578Z\", \"updated_at\":\"2025-11-17T17:10:45.734578Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f9acedbe-20fd-418c-9005-db6bf0d807c3 + status: 200 OK + code: 200 + duration: 96.442408ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/7f498de5-9a44-431a-b317-95a001162da9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"7f498de5-9a44-431a-b317-95a001162da9\", \"name\":\"tf_tests_iam_group_app4\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:45.734578Z\", \"updated_at\":\"2025-11-17T17:10:45.734578Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ff7b222e-b5ff-403e-a9df-ca8bea00d523 + status: 200 OK + code: 200 + duration: 61.557317ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"], \"application_ids\":[\"f0367957-71da-4578-9215-444922cc7683\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "423" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 17b599ef-2969-48e3-9278-ffac7210a499 + status: 200 OK + code: 200 + duration: 125.93628ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 113 + host: api.scaleway.com + body: "{\"user_ids\":[],\"application_ids\":[\"f0367957-71da-4578-9215-444922cc7683\",\"7f498de5-9a44-431a-b317-95a001162da9\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c/members + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"f0367957-71da-4578-9215-444922cc7683\", \"7f498de5-9a44-431a-b317-95a001162da9\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "425" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - fa36691c-a1b3-44a3-913c-8f6fc4dd7b41 + status: 200 OK + code: 200 + duration: 274.633989ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"7f498de5-9a44-431a-b317-95a001162da9\", \"f0367957-71da-4578-9215-444922cc7683\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "425" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 554bcd00-2d92-4088-9c35-2cb250f356f7 + status: 200 OK + code: 200 + duration: 42.929232ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"7f498de5-9a44-431a-b317-95a001162da9\", \"f0367957-71da-4578-9215-444922cc7683\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "425" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b1f28cda-5929-4337-ac09-1f343375c897 + status: 200 OK + code: 200 + duration: 100.19751ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/f0367957-71da-4578-9215-444922cc7683 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"f0367957-71da-4578-9215-444922cc7683\", \"name\":\"tf_tests_iam_group_app3\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:42.412259Z\", \"updated_at\":\"2025-11-17T17:10:42.412259Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 65246d00-320d-467b-bd66-d8bcfccdf0af + status: 200 OK + code: 200 + duration: 49.593613ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/7f498de5-9a44-431a-b317-95a001162da9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"7f498de5-9a44-431a-b317-95a001162da9\", \"name\":\"tf_tests_iam_group_app4\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:45.734578Z\", \"updated_at\":\"2025-11-17T17:10:45.734578Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ae2177bc-29a6-4572-b3cf-5041eb439032 + status: 200 OK + code: 200 + duration: 90.704027ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"7f498de5-9a44-431a-b317-95a001162da9\", \"f0367957-71da-4578-9215-444922cc7683\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "425" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c17112cb-8eb1-4333-badc-edda31660f7d + status: 200 OK + code: 200 + duration: 84.070526ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/7f498de5-9a44-431a-b317-95a001162da9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"7f498de5-9a44-431a-b317-95a001162da9\", \"name\":\"tf_tests_iam_group_app4\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:45.734578Z\", \"updated_at\":\"2025-11-17T17:10:45.734578Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - fc8af016-46ee-46a2-bc4a-828698b1b277 + status: 200 OK + code: 200 + duration: 40.349398ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 20845e98-70c7-4164-b6cb-4d8fd9de4dfc + status: 200 OK + code: 200 + duration: 71.390137ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/f0367957-71da-4578-9215-444922cc7683 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"f0367957-71da-4578-9215-444922cc7683\", \"name\":\"tf_tests_iam_group_app3\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:42.412259Z\", \"updated_at\":\"2025-11-17T17:10:42.412259Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 72a332a2-f5e9-4936-8748-5f088d79a65d + status: 200 OK + code: 200 + duration: 71.265218ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a25e71ed-cba2-4ace-98b6-eb9276d7d582 + status: 200 OK + code: 200 + duration: 223.60898ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"7f498de5-9a44-431a-b317-95a001162da9\", \"f0367957-71da-4578-9215-444922cc7683\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "425" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8861d145-b651-446a-95cc-6608bc96657e + status: 200 OK + code: 200 + duration: 48.784837ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"7f498de5-9a44-431a-b317-95a001162da9\", \"f0367957-71da-4578-9215-444922cc7683\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "425" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 324ee5dc-8610-4089-a007-395c2dbd27e7 + status: 200 OK + code: 200 + duration: 139.852204ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 151 + host: api.scaleway.com + body: "{\"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\",\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"],\"application_ids\":[\"7f498de5-9a44-431a-b317-95a001162da9\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c/members + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"84d20ae1-9650-419a-ab74-7ab09b6262e0\"], \"application_ids\":[\"7f498de5-9a44-431a-b317-95a001162da9\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 16c2bc7a-2819-465d-b937-3b98b782bbc4 + status: 200 OK + code: 200 + duration: 134.096298ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[\"7f498de5-9a44-431a-b317-95a001162da9\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 421b9287-a929-42a1-9955-b11c84f3af34 + status: 200 OK + code: 200 + duration: 50.697727ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[\"7f498de5-9a44-431a-b317-95a001162da9\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - df2fc8d9-ab10-480f-b1d5-605c94c5e505 + status: 200 OK + code: 200 + duration: 73.208246ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9103b1dc-db8c-4d8e-a395-ecb564fe76b0 + status: 200 OK + code: 200 + duration: 102.442769ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6329f6b4-1ab0-47b0-a702-43ea1811d973 + status: 200 OK + code: 200 + duration: 102.490819ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/7f498de5-9a44-431a-b317-95a001162da9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"7f498de5-9a44-431a-b317-95a001162da9\", \"name\":\"tf_tests_iam_group_app4\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:45.734578Z\", \"updated_at\":\"2025-11-17T17:10:45.734578Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - dd29a4a1-4b7e-4731-9c6e-9b4ccbdabd86 + status: 200 OK + code: 200 + duration: 53.563327ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/f0367957-71da-4578-9215-444922cc7683 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"f0367957-71da-4578-9215-444922cc7683\", \"name\":\"tf_tests_iam_group_app3\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:42.412259Z\", \"updated_at\":\"2025-11-17T17:10:42.412259Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 4723df9f-19c0-4d20-ab04-91dd79b8b6c4 + status: 200 OK + code: 200 + duration: 53.645458ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 895926f9-3a7a-4a2b-8080-9d687a086f27 + status: 200 OK + code: 200 + duration: 95.412103ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9b52ad28-c4bc-4204-94a5-c8a89c2eaed2 + status: 200 OK + code: 200 + duration: 96.438738ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[\"7f498de5-9a44-431a-b317-95a001162da9\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e9876c28-2561-4c05-aa7f-4761ae2d9582 + status: 200 OK + code: 200 + duration: 43.499129ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f394dbfe-d49b-4467-a9cc-3be9dba38b04 + status: 200 OK + code: 200 + duration: 52.555059ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/f0367957-71da-4578-9215-444922cc7683 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"f0367957-71da-4578-9215-444922cc7683\", \"name\":\"tf_tests_iam_group_app3\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:42.412259Z\", \"updated_at\":\"2025-11-17T17:10:42.412259Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c0d315e4-0da8-4b01-8d6c-625a16e87230 + status: 200 OK + code: 200 + duration: 52.410409ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9ed2e8e2-7a41-4afc-a5fb-2682ed2e7d91 + status: 200 OK + code: 200 + duration: 51.94754ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/88b4dde1-f3d4-478a-a281-784d53399a30 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 547 + body: "{\"id\":\"88b4dde1-f3d4-478a-a281-784d53399a30\", \"email\":\"rleone@scaleway.com\", \"username\":\"rleone@scaleway.com\", \"first_name\":\"Rémy\", \"last_name\":\"LEONE\", \"phone_number\":\"+33667564022\", \"locale\":\"fr_FR\", \"created_at\":\"2024-01-18T09:30:48.009812Z\", \"updated_at\":\"2025-10-29T13:41:56.438633Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-10-29T13:40:17.341551Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "547" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 21f71217-1163-48cd-92ea-03151d76aa88 + status: 200 OK + code: 200 + duration: 60.76749ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/7f498de5-9a44-431a-b317-95a001162da9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"7f498de5-9a44-431a-b317-95a001162da9\", \"name\":\"tf_tests_iam_group_app4\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:45.734578Z\", \"updated_at\":\"2025-11-17T17:10:45.734578Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1e1617f7-6fea-46e8-beef-3ae68f42c640 + status: 200 OK + code: 200 + duration: 51.963921ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[\"7f498de5-9a44-431a-b317-95a001162da9\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9cc06a8a-6f42-4261-996b-24f6649b72e3 + status: 200 OK + code: 200 + duration: 54.50818ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[\"7f498de5-9a44-431a-b317-95a001162da9\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a80da984-5de7-4d4f-9837-e133b5a5284e + status: 200 OK + code: 200 + duration: 94.279265ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 152 + host: api.scaleway.com + body: "{\"user_ids\":[\"88b4dde1-f3d4-478a-a281-784d53399a30\",\"ef29ce05-3f2b-4fa0-a259-d76110850d57\",\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"],\"application_ids\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c/members + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 465 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"88b4dde1-f3d4-478a-a281-784d53399a30\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"84d20ae1-9650-419a-ab74-7ab09b6262e0\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "465" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 989bf89a-acf0-4914-9513-28c8f39c174a + status: 200 OK + code: 200 + duration: 335.387449ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 465 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"88b4dde1-f3d4-478a-a281-784d53399a30\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "465" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - eecaf06f-dd12-4436-9a9d-f76af67b0d39 + status: 200 OK + code: 200 + duration: 87.402383ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 465 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"88b4dde1-f3d4-478a-a281-784d53399a30\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "465" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 96c2ba95-7542-457b-833f-b3b4603fcfbf + status: 200 OK + code: 200 + duration: 53.551275ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d0e2cb8b-61bc-4fc4-b54a-91ea238c0f48 + status: 200 OK + code: 200 + duration: 59.396323ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1216343c-bcb4-4b54-bfd0-432a297fa29c + status: 200 OK + code: 200 + duration: 68.083095ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/88b4dde1-f3d4-478a-a281-784d53399a30 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 547 + body: "{\"id\":\"88b4dde1-f3d4-478a-a281-784d53399a30\", \"email\":\"rleone@scaleway.com\", \"username\":\"rleone@scaleway.com\", \"first_name\":\"Rémy\", \"last_name\":\"LEONE\", \"phone_number\":\"+33667564022\", \"locale\":\"fr_FR\", \"created_at\":\"2024-01-18T09:30:48.009812Z\", \"updated_at\":\"2025-10-29T13:41:56.438633Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-10-29T13:40:17.341551Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "547" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0efb1cca-b9bd-4a5e-bb9d-74936510886c + status: 200 OK + code: 200 + duration: 67.1336ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 30c65f9a-386e-48da-8185-42d2ae0a5a5c + status: 200 OK + code: 200 + duration: 58.968977ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/f0367957-71da-4578-9215-444922cc7683 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"f0367957-71da-4578-9215-444922cc7683\", \"name\":\"tf_tests_iam_group_app3\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:42.412259Z\", \"updated_at\":\"2025-11-17T17:10:42.412259Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5256a7b7-65b9-49f6-86e0-8cfe5f00a80a + status: 200 OK + code: 200 + duration: 59.48878ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/88b4dde1-f3d4-478a-a281-784d53399a30 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 547 + body: "{\"id\":\"88b4dde1-f3d4-478a-a281-784d53399a30\", \"email\":\"rleone@scaleway.com\", \"username\":\"rleone@scaleway.com\", \"first_name\":\"Rémy\", \"last_name\":\"LEONE\", \"phone_number\":\"+33667564022\", \"locale\":\"fr_FR\", \"created_at\":\"2024-01-18T09:30:48.009812Z\", \"updated_at\":\"2025-10-29T13:41:56.438633Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":\"2025-10-29T13:40:17.341551Z\", \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "547" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - cf26872c-1c06-4f92-9577-301b80b62ab1 + status: 200 OK + code: 200 + duration: 59.980161ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/7f498de5-9a44-431a-b317-95a001162da9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"7f498de5-9a44-431a-b317-95a001162da9\", \"name\":\"tf_tests_iam_group_app4\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:45.734578Z\", \"updated_at\":\"2025-11-17T17:10:45.734578Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3e6772a7-71aa-4225-9cfb-235cd08f4ea1 + status: 200 OK + code: 200 + duration: 59.757417ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f58a0afa-a043-433d-a4e2-281d556f60e2 + status: 200 OK + code: 200 + duration: 60.054389ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 465 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"88b4dde1-f3d4-478a-a281-784d53399a30\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "465" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6419974c-ecbf-4aca-8ace-8ba24b320428 + status: 200 OK + code: 200 + duration: 68.710097ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/f0367957-71da-4578-9215-444922cc7683 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"f0367957-71da-4578-9215-444922cc7683\", \"name\":\"tf_tests_iam_group_app3\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:42.412259Z\", \"updated_at\":\"2025-11-17T17:10:42.412259Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 93d70964-d821-4ddd-a953-cb006059ceb7 + status: 200 OK + code: 200 + duration: 44.197179ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/7f498de5-9a44-431a-b317-95a001162da9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"7f498de5-9a44-431a-b317-95a001162da9\", \"name\":\"tf_tests_iam_group_app4\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:45.734578Z\", \"updated_at\":\"2025-11-17T17:10:45.734578Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - dcdcfcac-de9e-46c8-8896-74fe406f5015 + status: 200 OK + code: 200 + duration: 68.755199ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 465 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"88b4dde1-f3d4-478a-a281-784d53399a30\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "465" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a2de41b0-9c1e-439f-a5a8-0091640b25f2 + status: 200 OK + code: 200 + duration: 67.748342ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 465 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"88b4dde1-f3d4-478a-a281-784d53399a30\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "465" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 56794fa8-6c43-4469-8482-5043c2f06cda + status: 200 OK + code: 200 + duration: 45.463014ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"user_id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c/remove-member + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"88b4dde1-f3d4-478a-a281-784d53399a30\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "425" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9f88382b-e1bc-45fc-ae20-bb3b5931980b + status: 200 OK + code: 200 + duration: 110.197691ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"user_id\":\"88b4dde1-f3d4-478a-a281-784d53399a30\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c/remove-member + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 385 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "385" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f6238774-9568-45f4-b8b1-4e9136daa1ae + status: 200 OK + code: 200 + duration: 104.191516ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"user_id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c/remove-member + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 347 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "347" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0cc3374e-bf46-4b06-ba42-81ba2c8c7ce2 + status: 200 OK + code: 200 + duration: 125.291157ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 347 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "347" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 365484fc-f042-4c7b-9ea7-4630cdb0db64 + status: 200 OK + code: 200 + duration: 76.219249ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 347 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "347" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 93dbf189-bf4d-493d-b7ed-fbee8eba12e0 + status: 200 OK + code: 200 + duration: 63.621131ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 347 + body: "{\"id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\", \"created_at\":\"2025-11-17T17:10:42.736843Z\", \"updated_at\":\"2025-11-17T17:10:42.736843Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user_app\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "347" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 30766b87-410e-4d25-b530-482f7ebf87fa + status: 200 OK + code: 200 + duration: 44.292435ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/f0367957-71da-4578-9215-444922cc7683 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"f0367957-71da-4578-9215-444922cc7683\", \"name\":\"tf_tests_iam_group_app3\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:42.412259Z\", \"updated_at\":\"2025-11-17T17:10:42.412259Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 12ca664c-471c-49fa-8ba8-365353051162 + status: 200 OK + code: 200 + duration: 57.943099ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/7f498de5-9a44-431a-b317-95a001162da9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 323 + body: "{\"id\":\"7f498de5-9a44-431a-b317-95a001162da9\", \"name\":\"tf_tests_iam_group_app4\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:45.734578Z\", \"updated_at\":\"2025-11-17T17:10:45.734578Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "323" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 38f0be00-13e4-4189-a699-9b7f0e8a9186 + status: 200 OK + code: 200 + duration: 98.181088ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/7f498de5-9a44-431a-b317-95a001162da9 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 97e4086b-faba-4977-a2d9-e84f7037db28 + status: 204 No Content + code: 204 + duration: 106.488703ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d7af44a9-916c-4c44-a9f8-d013a44d0e44 + status: 204 No Content + code: 204 + duration: 147.908098ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/f0367957-71da-4578-9215-444922cc7683 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3df1fdd1-3b0a-4db7-8c6f-77f2773e5d5c + status: 204 No Content + code: 204 + duration: 332.510505ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/ecd0671e-122c-41d9-b008-260a2a07341c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 126 + body: "{\"message\":\"resource is not found\",\"resource\":\"group\",\"resource_id\":\"ecd0671e-122c-41d9-b008-260a2a07341c\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "126" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 28c09682-3a22-4c46-8b7a-be0e64a4f95c + status: 404 Not Found + code: 404 + duration: 77.472212ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/f0367957-71da-4578-9215-444922cc7683 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 132 + body: "{\"message\":\"resource is not found\",\"resource\":\"application\",\"resource_id\":\"f0367957-71da-4578-9215-444922cc7683\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "132" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 583ec14d-861a-406c-9745-c43eba6af094 + status: 404 Not Found + code: 404 + duration: 39.403098ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/7f498de5-9a44-431a-b317-95a001162da9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 132 + body: "{\"message\":\"resource is not found\",\"resource\":\"application\",\"resource_id\":\"7f498de5-9a44-431a-b317-95a001162da9\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "132" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c4b38f44-3f20-4fca-8796-0b318ee45597 + status: 404 Not Found + code: 404 + duration: 91.861018ms diff --git a/internal/services/iam/testdata/group-users.cassette.yaml b/internal/services/iam/testdata/group-users.cassette.yaml index b226fdafa..1ae647a78 100644 --- a/internal/services/iam/testdata/group-users.cassette.yaml +++ b/internal/services/iam/testdata/group-users.cassette.yaml @@ -1,2216 +1,1200 @@ --- 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - 2ab96a62-c36c-4de2-af0a-9c6e209b450a - status: 200 OK - code: 200 - duration: 95.890416ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:49 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: - - 6c36687a-d25c-4e8e-8552-3d6de0c3040c - status: 200 OK - code: 200 - duration: 108.027875ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 118 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf_tests_iam_group_user","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 343 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":[]}' - headers: - Content-Length: - - "343" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:50 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: - - 14f68abb-01e2-4e97-bbbb-203a9579fba4 - status: 200 OK - code: 200 - duration: 138.25ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 74 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0"],"application_ids":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035/members - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 383 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":false,"description":"","editable":false,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "383" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:50 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: - - 1ba4f560-b020-4ee8-9b14-92a2ee3b3a25 - status: 200 OK - code: 200 - duration: 231.65075ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 381 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:50 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: - - 128ecbaa-faa4-4df6-8d05-ad6957c05892 - status: 200 OK - code: 200 - duration: 216.223208ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 381 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:51 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: - - f855aa59-7006-41e4-9632-60b06a8dca0e - status: 200 OK - code: 200 - duration: 231.550208ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - 75c3466a-f1f8-4197-a46c-d529c993ac29 - status: 200 OK - code: 200 - duration: 98.819625ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - ea2e1b60-8489-4a31-bba5-a59767aa04c2 - status: 200 OK - code: 200 - duration: 89.281042ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 381 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - e585d32c-7f3f-484c-b85e-f9c4bc5289bc - status: 200 OK - code: 200 - duration: 112.121958ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - c354ae8a-4d0d-48c8-89fd-f0b482993620 - status: 200 OK - code: 200 - duration: 153.651708ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 495 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-01-07T13:38:53.442895Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "495" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - 613f0226-8055-4de4-8d77-057336c3195f - status: 200 OK - code: 200 - duration: 90.959584ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - 7cfa610f-cecd-4a40-ad37-70f068499d2f - status: 200 OK - code: 200 - duration: 99.696292ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 381 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - c09fd789-d931-4c49-900c-cec30f873248 - status: 200 OK - code: 200 - duration: 107.542333ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 495 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-01-07T13:38:53.442895Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "495" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - 4b40c636-343d-4ef4-a455-74afee83f4e1 - status: 200 OK - code: 200 - duration: 89.716459ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - 66b1b386-7522-4557-9f0c-149e71378d22 - status: 200 OK - code: 200 - duration: 100.661167ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 381 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - e58032df-3a5e-48f5-920f-994f9ae666b4 - status: 200 OK - code: 200 - duration: 77.197917ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_ids":["ef29ce05-3f2b-4fa0-a259-d76110850d57","84d20ae1-9650-419a-ab74-7ab09b6262e0"],"application_ids":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035/members - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":false,"description":"","editable":false,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["ef29ce05-3f2b-4fa0-a259-d76110850d57","84d20ae1-9650-419a-ab74-7ab09b6262e0"]}' - headers: - Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 74db2e81-10a3-41db-b56e-340e305f03d9 - status: 200 OK - code: 200 - duration: 163.269084ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}' - headers: - Content-Length: - - "421" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:56 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: - - 79ba3e5c-a018-437c-820b-f6401670bbfc - status: 200 OK - code: 200 - duration: 90.488125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}' - headers: - Content-Length: - - "421" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:56 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: - - a059e248-85a0-48f4-abea-6897801d55d9 - status: 200 OK - code: 200 - duration: 83.618666ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:56 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: - - e514a1d9-7a1a-468f-8b12-5289b4143722 - status: 200 OK - code: 200 - duration: 98.098583ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 495 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-01-07T13:38:53.442895Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "495" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:56 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: - - cc304deb-54a6-4471-99ee-c8016f0475bb - status: 200 OK - code: 200 - duration: 97.801583ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 495 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-01-07T13:38:53.442895Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "495" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 87114428-d12d-4cb5-9d61-cffdcb4e7758 - status: 200 OK - code: 200 - duration: 89.8865ms - - id: 22 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 121808c8-13b5-4281-80ae-883c609f310c - status: 200 OK - code: 200 - duration: 113.357083ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}' - headers: - Content-Length: - - "421" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - adad0ad4-373c-4063-a188-4dc5282e8441 - status: 200 OK - code: 200 - duration: 87.579584ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 495 - uncompressed: false - body: '{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-01-07T13:38:53.442895Z","username":"hashicorp@scaleway.com"}' - headers: - Content-Length: - - "495" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:58 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: - - 88bb7adb-6c3a-4ce1-a19f-e5432ed205da - status: 200 OK - code: 200 - duration: 141.663292ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 491 - uncompressed: false - body: '{"account_root_user_id":"e455b334-f426-4b1e-ab2f-913c31aa199c","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":true,"type":"guest","updated_at":"2025-01-07T13:40:54.776253Z","username":"developer-tools-team@scaleway.com"}' - headers: - Content-Length: - - "491" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:58 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: - - 8177571f-a4f5-436a-84e7-f248f2882879 - status: 200 OK - code: 200 - duration: 141.508542ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - f4395da3-2caf-45ce-9db7-bac4e755b8b4 - status: 200 OK - code: 200 - duration: 96.175375ms - - id: 27 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}' - headers: - Content-Length: - - "421" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - abab5fb4-5c25-44e5-89a0-f933925780e4 - status: 200 OK - code: 200 - duration: 104.922459ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - 1f76bd53-434a-4b94-90f7-7d69703b1846 - status: 200 OK - code: 200 - duration: 114.669708ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["84d20ae1-9650-419a-ab74-7ab09b6262e0","ef29ce05-3f2b-4fa0-a259-d76110850d57"]}' - headers: - Content-Length: - - "421" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:00 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: - - a829199c-4ba3-4aaf-b614-76b25e3d50e5 - status: 200 OK - code: 200 - duration: 92.466459ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 74 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_ids":["b6360d4f-831c-45a8-889e-0b65ed079e63"],"application_ids":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035/members - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 383 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":false,"description":"","editable":false,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["b6360d4f-831c-45a8-889e-0b65ed079e63"]}' - headers: - Content-Length: - - "383" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:01 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: - - cec8ac5e-7f90-4e23-ab38-736987ed9f93 - status: 200 OK - code: 200 - duration: 188.605791ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 381 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["b6360d4f-831c-45a8-889e-0b65ed079e63"]}' - headers: - Content-Length: - - "381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:01 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: - - 11ceecda-6104-4a27-a880-219c078e0afd - status: 200 OK - code: 200 - duration: 75.446ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 381 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["b6360d4f-831c-45a8-889e-0b65ed079e63"]}' - headers: - Content-Length: - - "381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:01 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: - - fe53248c-58a3-4c2e-8a63-4acd80714f66 - status: 200 OK - code: 200 - duration: 79.733125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:02 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: - - e0f3e1f4-e9ff-435b-856e-5e939e5deeba - status: 200 OK - code: 200 - duration: 111.724542ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:02 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: - - 143adbb3-c9a4-456a-95b9-244e99effcf1 - status: 200 OK - code: 200 - duration: 88.053209ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 381 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["b6360d4f-831c-45a8-889e-0b65ed079e63"]}' - headers: - Content-Length: - - "381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:02 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: - - db13c2ed-50df-4f4c-b73e-29da668c1bf4 - status: 200 OK - code: 200 - duration: 81.672583ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/b6360d4f-831c-45a8-889e-0b65ed079e63 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 496 - uncompressed: false - body: '{"account_root_user_id":"caeed50e-d7fe-4d74-b7f0-956d94e85d4b","created_at":"2022-12-01T12:53:29.981622Z","deletable":true,"email":"jcasteran@scaleway.com","id":"b6360d4f-831c-45a8-889e-0b65ed079e63","last_login_at":"2024-12-17T13:19:25.316964Z","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"activated","tags":[],"two_factor_enabled":false,"type":"guest","updated_at":"2025-01-07T13:39:41.962886Z","username":"jcasteran@scaleway.com"}' - headers: - Content-Length: - - "496" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:03 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: - - 1b6e5718-cf81-4be7-ad2a-855238523a23 - status: 200 OK - code: 200 - duration: 125.8975ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 381 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["b6360d4f-831c-45a8-889e-0b65ed079e63"]}' - headers: - Content-Length: - - "381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:04 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: - - 9165c88d-a587-4f38-b5cc-761f58a8ad0c - status: 200 OK - code: 200 - duration: 138.22375ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 381 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":["b6360d4f-831c-45a8-889e-0b65ed079e63"]}' - headers: - Content-Length: - - "381" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:05 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: - - 6396999e-74b1-4d0b-98db-a1db1f078062 - status: 200 OK - code: 200 - duration: 92.629125ms - - id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_id":"b6360d4f-831c-45a8-889e-0b65ed079e63"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035/remove-member - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 343 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":[]}' - headers: - Content-Length: - - "343" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:06 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: - - 3ca8c03f-a14e-4be5-9cc6-e093172b4b67 - status: 200 OK - code: 200 - duration: 186.19175ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 343 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":[]}' - headers: - Content-Length: - - "343" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:06 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: - - 82efd455-9dcf-4d46-abb3-0af48f5a3dab - status: 200 OK - code: 200 - duration: 121.890917ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 343 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":[]}' - headers: - Content-Length: - - "343" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:06 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: - - c332cb3b-817a-457b-8f5b-3f9b080e841a - status: 200 OK - code: 200 - duration: 136.419958ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 343 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:32:50.530924Z","deletable":true,"description":"","editable":true,"id":"525cae91-4371-4562-b3a3-336a2f82f035","managed":false,"name":"tf_tests_iam_group_user","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:50.530924Z","user_ids":[]}' - headers: - Content-Length: - - "343" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - dd823d96-b07c-48a8-91cf-cbae305285f5 - status: 200 OK - code: 200 - duration: 108.348333ms - - id: 43 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - 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: - - Wed, 22 Jan 2025 15:33: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: - - ef22fb80-d653-4f8d-9aa0-325dbf1b1320 - status: 204 No Content - code: 204 - duration: 106.263125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/525cae91-4371-4562-b3a3-336a2f82f035 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 126 - uncompressed: false - body: '{"message":"resource is not found","resource":"group","resource_id":"525cae91-4371-4562-b3a3-336a2f82f035","type":"not_found"}' - headers: - Content-Length: - - "126" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 101032a6-cee9-45cd-adaf-dde194fbce9f - status: 404 Not Found - code: 404 - duration: 33.525792ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a7a470e6-a16b-4ca1-84fe-8ebef6d12c09 + status: 200 OK + code: 200 + duration: 192.788789ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + host: api.scaleway.com + body: "{\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"name\":\"tf_tests_iam_group_user\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 343 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "343" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b51bbf11-8fdf-4fa1-b0c0-2a4ae1753dbc + status: 200 OK + code: 200 + duration: 220.585919ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 74 + host: api.scaleway.com + body: "{\"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"],\"application_ids\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269/members + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 381 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "381" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 46bfae7d-2c3b-4804-a883-0581ce5f7e63 + status: 200 OK + code: 200 + duration: 324.843094ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 381 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "381" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - baffdd89-120e-4144-bbf1-128e4aff3bac + status: 200 OK + code: 200 + duration: 237.770397ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 381 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "381" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a4176848-49d9-44a7-ab7e-fb88a9ce337e + status: 200 OK + code: 200 + duration: 166.002991ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a1a2969d-f16c-4a44-8693-6ddecde2ae3d + status: 200 OK + code: 200 + duration: 135.308584ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8f853974-e5e4-47fc-9e7a-b7e1beeb1dba + status: 200 OK + code: 200 + duration: 57.765873ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 381 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "381" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3b9d3faf-857c-4076-a38c-ef480b046bd0 + status: 200 OK + code: 200 + duration: 224.205116ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e52ea11d-964a-4b1a-afc7-51374fc9ea24 + status: 200 OK + code: 200 + duration: 125.068379ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 45732c35-b16e-4fbe-8fe5-3267bb49a928 + status: 200 OK + code: 200 + duration: 238.301108ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 381 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "381" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9a657270-f057-4a1c-804d-aeec3f208fde + status: 200 OK + code: 200 + duration: 81.958189ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 381 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "381" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b64f70f9-993c-4624-b770-168d048444f1 + status: 200 OK + code: 200 + duration: 62.003529ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 113 + host: api.scaleway.com + body: "{\"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\",\"84d20ae1-9650-419a-ab74-7ab09b6262e0\"],\"application_ids\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269/members + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"84d20ae1-9650-419a-ab74-7ab09b6262e0\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "421" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3625c4fe-462d-4d28-b3f9-728437cf7cec + status: 200 OK + code: 200 + duration: 388.994792ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "421" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6a954b97-44ec-45e7-be31-55e677d4f6a0 + status: 200 OK + code: 200 + duration: 43.286821ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "421" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7db50006-dcb2-4569-8bb2-34693143ed72 + status: 200 OK + code: 200 + duration: 84.138886ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 30f98bbe-3af9-4875-a568-062e9909f0c8 + status: 200 OK + code: 200 + duration: 47.499436ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 91f781c3-431c-4d4d-9f4d-43ecb28fd1ec + status: 200 OK + code: 200 + duration: 64.352786ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/84d20ae1-9650-419a-ab74-7ab09b6262e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 546 + body: "{\"id\":\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"email\":\"developer-tools-team@scaleway.com\", \"username\":\"developer-tools-team@scaleway.com\", \"first_name\":\"Developper Tools\", \"last_name\":\"TEAM\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2023-01-23T15:16:01.748877Z\", \"updated_at\":\"2025-06-23T13:16:39.476255Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "546" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - eba78a87-6eeb-4184-af8f-bc1db95e5647 + status: 200 OK + code: 200 + duration: 97.348041ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8e06e0d6-18a4-48e6-a5cb-ba5c27add07e + status: 200 OK + code: 200 + duration: 96.124733ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "421" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 858b0b2d-554e-450d-aa39-18b4befa7e28 + status: 200 OK + code: 200 + duration: 81.036526ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c46628c5-020d-4a18-adeb-a18ba8e6bac1 + status: 200 OK + code: 200 + duration: 90.548431ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "421" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 84e6dcad-b7cb-4b9a-8e3d-16261b5f5fcc + status: 200 OK + code: 200 + duration: 69.091046ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"84d20ae1-9650-419a-ab74-7ab09b6262e0\", \"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "421" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9b42500e-13ae-4c06-8064-353525029846 + status: 200 OK + code: 200 + duration: 44.489498ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 74 + host: api.scaleway.com + body: "{\"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\"],\"application_ids\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269/members + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 381 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "381" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 888e80e7-6085-4e1f-b62a-96014e27d585 + status: 200 OK + code: 200 + duration: 403.630942ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 381 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "381" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5901a48b-5a82-494d-acaa-143fa9e5d023 + status: 200 OK + code: 200 + duration: 41.528923ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 381 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "381" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a7155a66-4645-4eda-8ac8-a5742e5b4118 + status: 200 OK + code: 200 + duration: 47.145221ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9c9d1e3f-c8e3-4bd6-a03a-a247aa102c41 + status: 200 OK + code: 200 + duration: 61.915795ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/ef29ce05-3f2b-4fa0-a259-d76110850d57 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 565 + body: "{\"id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\", \"email\":\"hashicorp@scaleway.com\", \"username\":\"hashicorp@scaleway.com\", \"first_name\":\"\", \"last_name\":\"\", \"phone_number\":\"\", \"locale\":\"fr_FR\", \"created_at\":\"2022-03-29T11:44:54.791271Z\", \"updated_at\":\"2025-03-05T14:31:18.088783Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":false, \"last_login_at\":\"2024-06-18T21:39:22.182798Z\", \"type\":\"owner\", \"two_factor_enabled\":true, \"status\":\"activated\", \"mfa\":true, \"account_root_user_id\":\"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "565" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 635372fa-e07c-4836-a555-a895c3e619fc + status: 200 OK + code: 200 + duration: 75.158961ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 381 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "381" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b09aa624-70ff-4dce-b0f9-1db231f9d872 + status: 200 OK + code: 200 + duration: 47.244655ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 381 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "381" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9f06018e-b8f7-4970-a8ed-8234fa50d76f + status: 200 OK + code: 200 + duration: 81.432328ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 381 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[\"ef29ce05-3f2b-4fa0-a259-d76110850d57\"], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "381" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 27c9966e-66cd-4770-adce-380aafd47c67 + status: 200 OK + code: 200 + duration: 81.850433ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"user_id\":\"ef29ce05-3f2b-4fa0-a259-d76110850d57\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269/remove-member + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 343 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "343" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 26f43307-02fe-4a96-96b8-2271697a6383 + status: 200 OK + code: 200 + duration: 390.395418ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 343 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "343" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 4d0eed8b-bc73-4cd6-81e5-9dd3c56ecdb2 + status: 200 OK + code: 200 + duration: 53.614317ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 343 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "343" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d0cefaf2-5f71-48da-82eb-b1f642e130d6 + status: 200 OK + code: 200 + duration: 40.508983ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 343 + body: "{\"id\":\"813b569f-fe2c-4576-be4b-192e55843269\", \"created_at\":\"2025-11-17T17:10:30.567061Z\", \"updated_at\":\"2025-11-17T17:10:30.567061Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf_tests_iam_group_user\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "343" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 46fde15e-ae9e-4c9c-98a2-68007173c62e + status: 200 OK + code: 200 + duration: 62.783938ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7801d0e5-ae5e-44ac-bbc9-ae1417ff49cc + status: 204 No Content + code: 204 + duration: 79.9905ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/813b569f-fe2c-4576-be4b-192e55843269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 126 + body: "{\"message\":\"resource is not found\",\"resource\":\"group\",\"resource_id\":\"813b569f-fe2c-4576-be4b-192e55843269\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "126" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a1a323f2-6d6e-45cb-9ddc-8a1f4200c7c3 + status: 404 Not Found + code: 404 + duration: 36.240136ms diff --git a/internal/services/iam/testdata/policy-basic.cassette.yaml b/internal/services/iam/testdata/policy-basic.cassette.yaml index 1954e3387..406ab0c16 100644 --- a/internal/services/iam/testdata/policy-basic.cassette.yaml +++ b/internal/services/iam/testdata/policy-basic.cassette.yaml @@ -1,1232 +1,829 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 130 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-project-1011739640526254017","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 265 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:30.604990Z","description":"","id":"5309b022-82a3-4fe4-8435-056c87f0f96e","name":"test-acc-scaleway-project-1011739640526254017","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T15:32:30.604990Z"}' - headers: - Content-Length: - - "265" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - f9b294a7-edf0-41b7-befd-9bc07b149ad1 - status: 200 OK - code: 200 - duration: 560.3055ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 142 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-iam-app-5712825866758295142","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":null}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 345 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:31.005893Z","deletable":true,"description":"","editable":true,"id":"7f06d0b5-be1e-4988-a8fe-a23f30d54c2a","managed":false,"name":"test-acc-scaleway-iam-app-5712825866758295142","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:31.005893Z"}' - headers: - Content-Length: - - "345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 2810d5d8-e4d2-43f5-9f63-3932a42b82fb - status: 200 OK - code: 200 - duration: 123.054792ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 323 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-iam-policy-8604474126413414072","description":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","rules":[{"permission_set_names":["IAMManager"],"condition":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf"}],"tags":null,"application_id":"7f06d0b5-be1e-4988-a8fe-a23f30d54c2a"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - body: '{"application_id":"7f06d0b5-be1e-4988-a8fe-a23f30d54c2a","created_at":"2025-01-22T15:32:31.132091Z","deletable":true,"description":"","editable":true,"id":"b91bee60-3a4f-44e9-8727-878896b502f4","managed":false,"name":"test-acc-scaleway-iam-policy-8604474126413414072","nb_permission_sets":0,"nb_rules":0,"nb_scopes":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:31.132091Z"}' - headers: - Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - e42942d1-9ecf-4610-8ddd-8604cdc849e5 - status: 200 OK - code: 200 - duration: 183.980292ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 134 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"7f06d0b5-be1e-4988-a8fe-a23f30d54c2a","default_project_id":"5309b022-82a3-4fe4-8435-056c87f0f96e","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 414 - uncompressed: false - body: '{"access_key":"SCW9FG79CQ4JZTYRE63E","application_id":"7f06d0b5-be1e-4988-a8fe-a23f30d54c2a","created_at":"2025-01-22T15:32:31.426608Z","creation_ip":"51.159.73.9","default_project_id":"5309b022-82a3-4fe4-8435-056c87f0f96e","deletable":true,"description":"","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:32:31.426608Z"}' - headers: - Content-Length: - - "414" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 3d370e36-4107-418b-9932-7d395b141b73 - status: 200 OK - code: 200 - duration: 235.575625ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 427 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_policy_basic","description":"a description","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","rules":[{"permission_set_names":["AllProductsFullAccess"],"condition":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf"},{"permission_set_names":["ContainerRegistryReadOnly"],"condition":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf"}],"tags":["tf_tests","tests"],"no_principal":true}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 410 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.731814Z","deletable":true,"description":"a description","editable":true,"id":"f4fa371a-b8a9-4a68-aff9-3c688c98d249","managed":false,"name":"tf_tests_policy_basic","nb_permission_sets":0,"nb_rules":0,"nb_scopes":0,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests","tests"],"updated_at":"2025-01-22T15:32:44.731814Z"}' - headers: - Content-Length: - - "410" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:44 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: - - da11929f-7852-40ce-99ae-d50fa29671dc - status: 200 OK - code: 200 - duration: 114.892042ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f4fa371a-b8a9-4a68-aff9-3c688c98d249 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 410 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.731814Z","deletable":true,"description":"a description","editable":true,"id":"f4fa371a-b8a9-4a68-aff9-3c688c98d249","managed":false,"name":"tf_tests_policy_basic","nb_permission_sets":2,"nb_rules":2,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests","tests"],"updated_at":"2025-01-22T15:32:44.731814Z"}' - headers: - Content-Length: - - "410" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:44 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: - - f9939c7f-60ff-4fe1-994b-51f0fe26d0e3 - status: 200 OK - code: 200 - duration: 50.566167ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=f4fa371a-b8a9-4a68-aff9-3c688c98d249 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 455 - uncompressed: false - body: '{"rules":[{"condition":"","id":"5a3c81a6-6a68-41ec-90cb-2404a0b5be3e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"},{"condition":"","id":"29f16ad3-dd49-433d-ba68-3df058ed0445","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["ContainerRegistryReadOnly"],"permission_sets_scope_type":"projects"}],"total_count":2}' - headers: - Content-Length: - - "455" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:44 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: - - fa3a1787-bb2b-4677-ae00-a1696a7210d5 - status: 200 OK - code: 200 - duration: 55.060792ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f4fa371a-b8a9-4a68-aff9-3c688c98d249 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 410 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.731814Z","deletable":true,"description":"a description","editable":true,"id":"f4fa371a-b8a9-4a68-aff9-3c688c98d249","managed":false,"name":"tf_tests_policy_basic","nb_permission_sets":2,"nb_rules":2,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests","tests"],"updated_at":"2025-01-22T15:32:44.731814Z"}' - headers: - Content-Length: - - "410" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - 9c39876d-3395-4d6c-b92b-433892b1ac9e - status: 200 OK - code: 200 - duration: 86.152709ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f4fa371a-b8a9-4a68-aff9-3c688c98d249 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 410 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.731814Z","deletable":true,"description":"a description","editable":true,"id":"f4fa371a-b8a9-4a68-aff9-3c688c98d249","managed":false,"name":"tf_tests_policy_basic","nb_permission_sets":2,"nb_rules":2,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests","tests"],"updated_at":"2025-01-22T15:32:44.731814Z"}' - headers: - Content-Length: - - "410" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:46 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: - - f5b5738e-8b84-4853-b157-b9cfe31c4162 - status: 200 OK - code: 200 - duration: 47.91475ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=f4fa371a-b8a9-4a68-aff9-3c688c98d249 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 455 - uncompressed: false - body: '{"rules":[{"condition":"","id":"5a3c81a6-6a68-41ec-90cb-2404a0b5be3e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"},{"condition":"","id":"29f16ad3-dd49-433d-ba68-3df058ed0445","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["ContainerRegistryReadOnly"],"permission_sets_scope_type":"projects"}],"total_count":2}' - headers: - Content-Length: - - "455" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:46 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: - - 78801bce-3d5c-4186-b50a-d851916038da - status: 200 OK - code: 200 - duration: 74.058916ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f4fa371a-b8a9-4a68-aff9-3c688c98d249 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 410 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.731814Z","deletable":true,"description":"a description","editable":true,"id":"f4fa371a-b8a9-4a68-aff9-3c688c98d249","managed":false,"name":"tf_tests_policy_basic","nb_permission_sets":2,"nb_rules":2,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["tf_tests","tests"],"updated_at":"2025-01-22T15:32:44.731814Z"}' - headers: - Content-Length: - - "410" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 8a841a17-518a-43f0-90ee-f7e77c1d1bed - status: 200 OK - code: 200 - duration: 48.094ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=f4fa371a-b8a9-4a68-aff9-3c688c98d249 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 455 - uncompressed: false - body: '{"rules":[{"condition":"","id":"5a3c81a6-6a68-41ec-90cb-2404a0b5be3e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"},{"condition":"","id":"29f16ad3-dd49-433d-ba68-3df058ed0445","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["ContainerRegistryReadOnly"],"permission_sets_scope_type":"projects"}],"total_count":2}' - headers: - Content-Length: - - "455" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - c77e2a9d-22a8-42f5-859b-28a9aecef3cb - status: 200 OK - code: 200 - duration: 61.195042ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 11 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f4fa371a-b8a9-4a68-aff9-3c688c98d249 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 391 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.731814Z","deletable":true,"description":"a description","editable":true,"id":"f4fa371a-b8a9-4a68-aff9-3c688c98d249","managed":false,"name":"tf_tests_policy_basic","nb_permission_sets":2,"nb_rules":2,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:44.731814Z"}' - headers: - Content-Length: - - "391" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - e6e02caf-034e-4432-b04e-2b2770934812 - status: 200 OK - code: 200 - duration: 73.906708ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 185 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"policy_id":"f4fa371a-b8a9-4a68-aff9-3c688c98d249","rules":[{"permission_set_names":["AllProductsFullAccess"],"condition":"","organization_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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 222 - uncompressed: false - body: '{"rules":[{"condition":"","id":"d9f57218-9308-44d9-bedd-68f64173d703","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}]}' - headers: - Content-Length: - - "222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - 634ade5d-13c0-4e42-a0f2-b2db3a2a0719 - status: 200 OK - code: 200 - duration: 80.189125ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f4fa371a-b8a9-4a68-aff9-3c688c98d249 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 391 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.731814Z","deletable":true,"description":"a description","editable":true,"id":"f4fa371a-b8a9-4a68-aff9-3c688c98d249","managed":false,"name":"tf_tests_policy_basic","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:48.642784Z"}' - headers: - Content-Length: - - "391" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - 29322b02-915f-479b-a89f-6cb3f2808f91 - status: 200 OK - code: 200 - duration: 52.143167ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=f4fa371a-b8a9-4a68-aff9-3c688c98d249 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"d9f57218-9308-44d9-bedd-68f64173d703","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - 9308abbb-e46b-4e90-b3c7-1d5e646fa786 - status: 200 OK - code: 200 - duration: 64.793334ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f4fa371a-b8a9-4a68-aff9-3c688c98d249 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 391 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.731814Z","deletable":true,"description":"a description","editable":true,"id":"f4fa371a-b8a9-4a68-aff9-3c688c98d249","managed":false,"name":"tf_tests_policy_basic","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:48.642784Z"}' - headers: - Content-Length: - - "391" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:49 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: - - 14e45e61-ceb0-40b5-b34c-2a48417bfaeb - status: 200 OK - code: 200 - duration: 116.140833ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f4fa371a-b8a9-4a68-aff9-3c688c98d249 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 391 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.731814Z","deletable":true,"description":"a description","editable":true,"id":"f4fa371a-b8a9-4a68-aff9-3c688c98d249","managed":false,"name":"tf_tests_policy_basic","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:48.642784Z"}' - headers: - Content-Length: - - "391" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:50 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: - - 82c0dd22-9d19-4886-a910-70a28fce8112 - status: 200 OK - code: 200 - duration: 55.082459ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=f4fa371a-b8a9-4a68-aff9-3c688c98d249 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"d9f57218-9308-44d9-bedd-68f64173d703","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:50 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: - - 05b4ba63-218c-46f4-85f5-058731e7a4d8 - status: 200 OK - code: 200 - duration: 60.524209ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f4fa371a-b8a9-4a68-aff9-3c688c98d249 - 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: - - Wed, 22 Jan 2025 15:32:52 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: - - bf6333b0-ded6-4e86-91f7-949e6830ac56 - status: 204 No Content - code: 204 - duration: 82.174875ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW9FG79CQ4JZTYRE63E - 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: - - Wed, 22 Jan 2025 15:32:52 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: - - b85ec961-a387-494b-b7e8-9bb934a13617 - status: 204 No Content - code: 204 - duration: 98.825708ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/b91bee60-3a4f-44e9-8727-878896b502f4 - 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: - - Wed, 22 Jan 2025 15:32:52 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: - - 79dc3827-fd28-4ba2-967e-1270e2cf4bbf - status: 204 No Content - code: 204 - duration: 107.905708ms - - id: 22 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/7f06d0b5-be1e-4988-a8fe-a23f30d54c2a - 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: - - Wed, 22 Jan 2025 15:32:52 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: - - 52d6759e-1156-4e09-b5c5-99e6bd79adc6 - status: 204 No Content - code: 204 - duration: 105.408208ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/5309b022-82a3-4fe4-8435-056c87f0f96e - 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: - - Wed, 22 Jan 2025 15:32:53 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: - - 3a40fa2b-d9a2-473a-9b38-4c63bcaf2b47 - status: 204 No Content - code: 204 - duration: 1.403871541s - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f4fa371a-b8a9-4a68-aff9-3c688c98d249 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"policy","resource_id":"f4fa371a-b8a9-4a68-aff9-3c688c98d249","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - 879fb1fe-fd3e-4306-9fd1-bd258f81bc01 - status: 404 Not Found - code: 404 - duration: 33.055917ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 130 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-project-5461475594585013710\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 287 + body: "{\"id\":\"864866df-92a7-4482-8d0e-ef30de5294f5\", \"name\":\"test-acc-scaleway-project-5461475594585013710\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:20.990049Z\", \"updated_at\":\"2025-11-17T17:10:20.990049Z\", \"description\":\"\", \"qualification\":null}" + headers: + Content-Length: + - "287" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1a5cf145-2bd2-4dd5-b23a-981fcf65c594 + status: 200 OK + code: 200 + duration: 489.541616ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 142 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-iam-app-2160907376518663832\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":null}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 345 + body: "{\"id\":\"5f2277e1-3e8e-4e42-8343-c916aeaab6d3\", \"name\":\"test-acc-scaleway-iam-app-2160907376518663832\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:21.440012Z\", \"updated_at\":\"2025-11-17T17:10:21.440012Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "345" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - eab41e4c-7448-427d-be47-e979976fac60 + status: 200 OK + code: 200 + duration: 246.621218ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 323 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-iam-policy-5832651119638896928\",\"description\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"rules\":[{\"permission_set_names\":[\"IAMManager\"],\"condition\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}],\"tags\":null,\"application_id\":\"5f2277e1-3e8e-4e42-8343-c916aeaab6d3\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"id\":\"6b294d72-2d84-42d0-8814-ea981ff594e4\", \"name\":\"test-acc-scaleway-iam-policy-5832651119638896928\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:21.684131Z\", \"updated_at\":\"2025-11-17T17:10:21.684131Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":0, \"nb_scopes\":0, \"nb_permission_sets\":0, \"tags\":[], \"application_id\":\"5f2277e1-3e8e-4e42-8343-c916aeaab6d3\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 78387f3b-feae-45e1-ba4f-f76f6ef9f7ff + status: 200 OK + code: 200 + duration: 244.69836ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 134 + host: api.scaleway.com + body: "{\"application_id\":\"5f2277e1-3e8e-4e42-8343-c916aeaab6d3\",\"default_project_id\":\"864866df-92a7-4482-8d0e-ef30de5294f5\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 416 + body: "{\"access_key\":\"SCW88DA3M87WJR36HM85\", \"secret_key\":\"11111111-1111-1111-1111-111111111111\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:22.018118Z\", \"updated_at\":\"2025-11-17T17:10:22.018118Z\", \"expires_at\":null, \"default_project_id\":\"864866df-92a7-4482-8d0e-ef30de5294f5\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"5f2277e1-3e8e-4e42-8343-c916aeaab6d3\"}" + headers: + Content-Length: + - "416" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8dbd770f-523b-4d71-8c74-b49272d70d82 + status: 200 OK + code: 200 + duration: 368.513204ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 427 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_policy_basic\",\"description\":\"a description\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"rules\":[{\"permission_set_names\":[\"AllProductsFullAccess\"],\"condition\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"},{\"permission_set_names\":[\"ContainerRegistryReadOnly\"],\"condition\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}],\"tags\":[\"tf_tests\",\"tests\"],\"no_principal\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 410 + body: "{\"id\":\"a84e144f-a433-4c19-88fa-905fb1de406f\", \"name\":\"tf_tests_policy_basic\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:41.103081Z\", \"updated_at\":\"2025-11-17T17:10:41.103081Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":0, \"nb_scopes\":0, \"nb_permission_sets\":0, \"tags\":[\"tf_tests\", \"tests\"], \"no_principal\":true}" + headers: + Content-Length: + - "410" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8ac5e93d-c600-4ad6-9fa6-57688dae8431 + status: 200 OK + code: 200 + duration: 151.517983ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a84e144f-a433-4c19-88fa-905fb1de406f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 410 + body: "{\"id\":\"a84e144f-a433-4c19-88fa-905fb1de406f\", \"name\":\"tf_tests_policy_basic\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:41.103081Z\", \"updated_at\":\"2025-11-17T17:10:41.103081Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":2, \"nb_scopes\":1, \"nb_permission_sets\":2, \"tags\":[\"tf_tests\", \"tests\"], \"no_principal\":true}" + headers: + Content-Length: + - "410" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 02c7c6a0-ae4d-4fb1-b59d-7a97ab7ff44f + status: 200 OK + code: 200 + duration: 143.685185ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - a84e144f-a433-4c19-88fa-905fb1de406f + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=a84e144f-a433-4c19-88fa-905fb1de406f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 455 + body: "{\"rules\":[{\"id\":\"706a366b-fd96-41bc-a79f-3ac217765e77\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}, {\"id\":\"e60503d9-04b1-46d8-a9d3-42f8ee837edb\", \"permission_set_names\":[\"ContainerRegistryReadOnly\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":2}" + headers: + Content-Length: + - "455" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b03b7b2b-07ba-4685-bbb9-5b743dc60b8d + status: 200 OK + code: 200 + duration: 127.822064ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a84e144f-a433-4c19-88fa-905fb1de406f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 410 + body: "{\"id\":\"a84e144f-a433-4c19-88fa-905fb1de406f\", \"name\":\"tf_tests_policy_basic\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:41.103081Z\", \"updated_at\":\"2025-11-17T17:10:41.103081Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":2, \"nb_scopes\":1, \"nb_permission_sets\":2, \"tags\":[\"tf_tests\", \"tests\"], \"no_principal\":true}" + headers: + Content-Length: + - "410" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a1cfc31b-b07c-4dda-9c80-43ace910c0f1 + status: 200 OK + code: 200 + duration: 185.568385ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a84e144f-a433-4c19-88fa-905fb1de406f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 410 + body: "{\"id\":\"a84e144f-a433-4c19-88fa-905fb1de406f\", \"name\":\"tf_tests_policy_basic\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:41.103081Z\", \"updated_at\":\"2025-11-17T17:10:41.103081Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":2, \"nb_scopes\":1, \"nb_permission_sets\":2, \"tags\":[\"tf_tests\", \"tests\"], \"no_principal\":true}" + headers: + Content-Length: + - "410" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3095b856-68a6-41f0-b5b2-dc3da2f76f1d + status: 200 OK + code: 200 + duration: 121.38735ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - a84e144f-a433-4c19-88fa-905fb1de406f + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=a84e144f-a433-4c19-88fa-905fb1de406f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 455 + body: "{\"rules\":[{\"id\":\"706a366b-fd96-41bc-a79f-3ac217765e77\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}, {\"id\":\"e60503d9-04b1-46d8-a9d3-42f8ee837edb\", \"permission_set_names\":[\"ContainerRegistryReadOnly\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":2}" + headers: + Content-Length: + - "455" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 80d12f51-1e7a-4dc6-8b52-32ddbf6c233e + status: 200 OK + code: 200 + duration: 75.969684ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a84e144f-a433-4c19-88fa-905fb1de406f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 410 + body: "{\"id\":\"a84e144f-a433-4c19-88fa-905fb1de406f\", \"name\":\"tf_tests_policy_basic\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:41.103081Z\", \"updated_at\":\"2025-11-17T17:10:41.103081Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":2, \"nb_scopes\":1, \"nb_permission_sets\":2, \"tags\":[\"tf_tests\", \"tests\"], \"no_principal\":true}" + headers: + Content-Length: + - "410" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d556e316-c26d-4110-996b-cbaa44d4a6c5 + status: 200 OK + code: 200 + duration: 99.375817ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - a84e144f-a433-4c19-88fa-905fb1de406f + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=a84e144f-a433-4c19-88fa-905fb1de406f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 455 + body: "{\"rules\":[{\"id\":\"706a366b-fd96-41bc-a79f-3ac217765e77\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}, {\"id\":\"e60503d9-04b1-46d8-a9d3-42f8ee837edb\", \"permission_set_names\":[\"ContainerRegistryReadOnly\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":2}" + headers: + Content-Length: + - "455" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - df685108-cead-48cb-ab04-006047b6e77f + status: 200 OK + code: 200 + duration: 117.322334ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 11 + host: api.scaleway.com + body: "{\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a84e144f-a433-4c19-88fa-905fb1de406f + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 391 + body: "{\"id\":\"a84e144f-a433-4c19-88fa-905fb1de406f\", \"name\":\"tf_tests_policy_basic\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:41.103081Z\", \"updated_at\":\"2025-11-17T17:10:41.103081Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":2, \"nb_scopes\":1, \"nb_permission_sets\":2, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "391" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5680f767-3e4d-41cf-982d-85e5426970c5 + status: 200 OK + code: 200 + duration: 172.820106ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 185 + host: api.scaleway.com + body: "{\"policy_id\":\"a84e144f-a433-4c19-88fa-905fb1de406f\",\"rules\":[{\"permission_set_names\":[\"AllProductsFullAccess\"],\"condition\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 222 + body: "{\"rules\":[{\"id\":\"34c5a03a-98a6-4ca2-9602-dc3b6294578e\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}]}" + headers: + Content-Length: + - "222" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 496d0564-a8e9-4534-891e-6fba388edecf + status: 200 OK + code: 200 + duration: 127.527614ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a84e144f-a433-4c19-88fa-905fb1de406f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 391 + body: "{\"id\":\"a84e144f-a433-4c19-88fa-905fb1de406f\", \"name\":\"tf_tests_policy_basic\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:41.103081Z\", \"updated_at\":\"2025-11-17T17:10:44.804445Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "391" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 327e52df-48f2-42e9-b594-1158c4d63d90 + status: 200 OK + code: 200 + duration: 83.051958ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - a84e144f-a433-4c19-88fa-905fb1de406f + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=a84e144f-a433-4c19-88fa-905fb1de406f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"34c5a03a-98a6-4ca2-9602-dc3b6294578e\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9900917d-0261-4b1c-b4fa-f9b505737045 + status: 200 OK + code: 200 + duration: 120.58399ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a84e144f-a433-4c19-88fa-905fb1de406f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 391 + body: "{\"id\":\"a84e144f-a433-4c19-88fa-905fb1de406f\", \"name\":\"tf_tests_policy_basic\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:41.103081Z\", \"updated_at\":\"2025-11-17T17:10:44.804445Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "391" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c7df29fe-9f07-4bca-8534-2b69387973af + status: 200 OK + code: 200 + duration: 97.122909ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a84e144f-a433-4c19-88fa-905fb1de406f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 391 + body: "{\"id\":\"a84e144f-a433-4c19-88fa-905fb1de406f\", \"name\":\"tf_tests_policy_basic\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:41.103081Z\", \"updated_at\":\"2025-11-17T17:10:44.804445Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "391" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d4e068ff-5ed5-459f-b559-04cc5d3c153c + status: 200 OK + code: 200 + duration: 46.277429ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - a84e144f-a433-4c19-88fa-905fb1de406f + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=a84e144f-a433-4c19-88fa-905fb1de406f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"34c5a03a-98a6-4ca2-9602-dc3b6294578e\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 61eaf679-2434-4074-8245-1139f89621bb + status: 200 OK + code: 200 + duration: 127.73025ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a84e144f-a433-4c19-88fa-905fb1de406f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - decd59f7-1963-47c3-96e4-6a022c4bb0e1 + status: 204 No Content + code: 204 + duration: 97.163448ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - dceaff9d-0ee6-46ed-a045-a7db48d5f21f + status: 204 No Content + code: 204 + duration: 93.56899ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/6b294d72-2d84-42d0-8814-ea981ff594e4 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 389ad237-60f4-4194-a9b6-2683fe6a4767 + status: 204 No Content + code: 204 + duration: 211.562587ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/5f2277e1-3e8e-4e42-8343-c916aeaab6d3 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - efc42a4e-5f32-4a73-8f2b-53667fa0b4c9 + status: 204 No Content + code: 204 + duration: 201.380316ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/864866df-92a7-4482-8d0e-ef30de5294f5 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f24d1896-34d5-4f42-89cd-430c596bd165 + status: 204 No Content + code: 204 + duration: 1.381681858s +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a84e144f-a433-4c19-88fa-905fb1de406f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"policy\",\"resource_id\":\"a84e144f-a433-4c19-88fa-905fb1de406f\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5727fe4b-8e29-4d1a-8fe0-c3c5c7ea8455 + status: 404 Not Found + code: 404 + duration: 66.507112ms diff --git a/internal/services/iam/testdata/policy-change-linked-entity.cassette.yaml b/internal/services/iam/testdata/policy-change-linked-entity.cassette.yaml index 4c6ed6824..c6d72be5c 100644 --- a/internal/services/iam/testdata/policy-change-linked-entity.cassette.yaml +++ b/internal/services/iam/testdata/policy-change-linked-entity.cassette.yaml @@ -1,2263 +1,1516 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 130 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-project-2754093280991376271","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 265 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:32.412632Z","description":"","id":"59539504-c0d9-452b-a589-c0aaff4d125a","name":"test-acc-scaleway-project-2754093280991376271","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T15:32:32.412632Z"}' - headers: - Content-Length: - - "265" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:32 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: - - 1a09ba76-e2be-4251-a6e2-8a9dff6209a6 - status: 200 OK - code: 200 - duration: 440.164541ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 142 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-iam-app-8274823633816051767","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":null}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 345 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:32.853240Z","deletable":true,"description":"","editable":true,"id":"9dd7a293-ec4c-4d52-86d0-60dffffc6042","managed":false,"name":"test-acc-scaleway-iam-app-8274823633816051767","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:32.853240Z"}' - headers: - Content-Length: - - "345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:32 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: - - 3954d06d-0e08-4cef-904a-a94af85fb636 - status: 200 OK - code: 200 - duration: 127.021333ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 323 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-iam-policy-2052045134266156269","description":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","rules":[{"permission_set_names":["IAMManager"],"condition":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf"}],"tags":null,"application_id":"9dd7a293-ec4c-4d52-86d0-60dffffc6042"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - body: '{"application_id":"9dd7a293-ec4c-4d52-86d0-60dffffc6042","created_at":"2025-01-22T15:32:32.960968Z","deletable":true,"description":"","editable":true,"id":"b4c17d71-44ef-4de1-9118-45888e4ad0f2","managed":false,"name":"test-acc-scaleway-iam-policy-2052045134266156269","nb_permission_sets":0,"nb_rules":0,"nb_scopes":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:32.960968Z"}' - headers: - Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - ee90be84-2e44-42c2-ba20-b931f6ee3f52 - status: 200 OK - code: 200 - duration: 140.862708ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 134 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"9dd7a293-ec4c-4d52-86d0-60dffffc6042","default_project_id":"59539504-c0d9-452b-a589-c0aaff4d125a","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 414 - uncompressed: false - body: '{"access_key":"SCWV2249AGSCDXP026CF","application_id":"9dd7a293-ec4c-4d52-86d0-60dffffc6042","created_at":"2025-01-22T15:32:33.201832Z","creation_ip":"51.159.73.9","default_project_id":"59539504-c0d9-452b-a589-c0aaff4d125a","deletable":true,"description":"","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:32:33.201832Z"}' - headers: - Content-Length: - - "414" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 62fd956f-90c7-4fe0-8c24-0fc46afa8271 - status: 200 OK - code: 200 - duration: 240.668334ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 297 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_policy_change_linked_entity","description":"a description","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","rules":[{"permission_set_names":["AllProductsFullAccess"],"condition":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf"}],"tags":[],"no_principal":true}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 406 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:58.106439Z","deletable":true,"description":"a description","editable":true,"id":"f3c44b62-f668-48b9-b910-7dfb6df6bb1a","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_permission_sets":0,"nb_rules":0,"nb_scopes":0,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:58.106439Z"}' - headers: - Content-Length: - - "406" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:58 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: - - 0fccdfc6-af82-44c7-baab-4f0c5f17439a - status: 200 OK - code: 200 - duration: 111.904459ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 406 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:58.106439Z","deletable":true,"description":"a description","editable":true,"id":"f3c44b62-f668-48b9-b910-7dfb6df6bb1a","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:58.106439Z"}' - headers: - Content-Length: - - "406" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:58 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: - - 08f0bbb8-e4fd-4af8-bf5e-a450932c618e - status: 200 OK - code: 200 - duration: 139.523166ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"2a4215cf-3752-4c7b-bcf7-a2b28b209e56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:58 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: - - 1ef0b6a6-5b02-4b33-ae44-970041746104 - status: 200 OK - code: 200 - duration: 73.838ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 406 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:58.106439Z","deletable":true,"description":"a description","editable":true,"id":"f3c44b62-f668-48b9-b910-7dfb6df6bb1a","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:58.106439Z"}' - headers: - Content-Length: - - "406" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:58 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: - - deb72412-b15d-4682-b411-deaed1b075de - status: 200 OK - code: 200 - duration: 83.757708ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 406 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:58.106439Z","deletable":true,"description":"a description","editable":true,"id":"f3c44b62-f668-48b9-b910-7dfb6df6bb1a","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:58.106439Z"}' - headers: - Content-Length: - - "406" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - 42d7d034-06d5-4e94-90dd-ed70906a245b - status: 200 OK - code: 200 - duration: 69.776792ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"2a4215cf-3752-4c7b-bcf7-a2b28b209e56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - bd64885e-685e-4f9f-8584-0891cdaab245 - status: 200 OK - code: 200 - duration: 65.865042ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 406 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:58.106439Z","deletable":true,"description":"a description","editable":true,"id":"f3c44b62-f668-48b9-b910-7dfb6df6bb1a","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:58.106439Z"}' - headers: - Content-Length: - - "406" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:01 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: - - b1e23f8d-ba94-4a59-8ffa-ff7abd6fc72a - status: 200 OK - code: 200 - duration: 53.257958ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"2a4215cf-3752-4c7b-bcf7-a2b28b209e56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:01 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: - - edc58b7d-eaa7-45a8-9f3e-8122ec277aa9 - status: 200 OK - code: 200 - duration: 75.715375ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 144 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_policy_change_linked_entity","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"a description","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 349 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:02.560720Z","deletable":true,"description":"a description","editable":true,"id":"71e5d027-294d-4bd6-a586-e72600097120","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:02.560720Z"}' - headers: - Content-Length: - - "349" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:02 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: - - 2ac9db87-c0ca-4fbb-aef2-0e91a19d530f - status: 200 OK - code: 200 - duration: 77.1285ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/71e5d027-294d-4bd6-a586-e72600097120 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 349 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:02.560720Z","deletable":true,"description":"a description","editable":true,"id":"71e5d027-294d-4bd6-a586-e72600097120","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:02.560720Z"}' - headers: - Content-Length: - - "349" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:02 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: - - 66b39641-65d1-4fa9-81e7-871af2684512 - status: 200 OK - code: 200 - duration: 55.637917ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 57 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"71e5d027-294d-4bd6-a586-e72600097120"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 442 - uncompressed: false - body: '{"application_id":"71e5d027-294d-4bd6-a586-e72600097120","created_at":"2025-01-22T15:32:58.106439Z","deletable":true,"description":"a description","editable":true,"id":"f3c44b62-f668-48b9-b910-7dfb6df6bb1a","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:58.106439Z"}' - headers: - Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:02 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: - - 70c2cc5d-f002-463f-8d6b-29faf0dfeedf - status: 200 OK - code: 200 - duration: 78.593291ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 442 - uncompressed: false - body: '{"application_id":"71e5d027-294d-4bd6-a586-e72600097120","created_at":"2025-01-22T15:32:58.106439Z","deletable":true,"description":"a description","editable":true,"id":"f3c44b62-f668-48b9-b910-7dfb6df6bb1a","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:58.106439Z"}' - headers: - Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:02 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: - - c4b92cae-4ac1-4485-b3c0-38245c230c73 - status: 200 OK - code: 200 - duration: 54.582833ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"2a4215cf-3752-4c7b-bcf7-a2b28b209e56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:02 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: - - 8fdc9c2b-da3c-42f7-8caf-22e557da6011 - status: 200 OK - code: 200 - duration: 49.936333ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 442 - uncompressed: false - body: '{"application_id":"71e5d027-294d-4bd6-a586-e72600097120","created_at":"2025-01-22T15:32:58.106439Z","deletable":true,"description":"a description","editable":true,"id":"f3c44b62-f668-48b9-b910-7dfb6df6bb1a","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:58.106439Z"}' - headers: - Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:03 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: - - eafc04ad-b5ab-425c-adcc-b1528b9e3b3f - status: 200 OK - code: 200 - duration: 87.193167ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/71e5d027-294d-4bd6-a586-e72600097120 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 349 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:02.560720Z","deletable":true,"description":"a description","editable":true,"id":"71e5d027-294d-4bd6-a586-e72600097120","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:02.560720Z"}' - headers: - Content-Length: - - "349" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:04 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: - - 8076db80-6218-4d06-8710-77b5d474b96c - status: 200 OK - code: 200 - duration: 59.955875ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 442 - uncompressed: false - body: '{"application_id":"71e5d027-294d-4bd6-a586-e72600097120","created_at":"2025-01-22T15:32:58.106439Z","deletable":true,"description":"a description","editable":true,"id":"f3c44b62-f668-48b9-b910-7dfb6df6bb1a","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:58.106439Z"}' - headers: - Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:04 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: - - 6f7d97ef-39cf-4249-96d9-cd4b975fde33 - status: 200 OK - code: 200 - duration: 49.046834ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"2a4215cf-3752-4c7b-bcf7-a2b28b209e56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:04 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: - - 3fe2655a-1ea9-4182-9030-b45ed4aa97c2 - status: 200 OK - code: 200 - duration: 52.70125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 442 - uncompressed: false - body: '{"application_id":"71e5d027-294d-4bd6-a586-e72600097120","created_at":"2025-01-22T15:32:58.106439Z","deletable":true,"description":"a description","editable":true,"id":"f3c44b62-f668-48b9-b910-7dfb6df6bb1a","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:58.106439Z"}' - headers: - Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:05 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: - - dedff0db-3fc6-420e-b9dc-e11fe5096b1f - status: 200 OK - code: 200 - duration: 225.465417ms - - id: 22 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/71e5d027-294d-4bd6-a586-e72600097120 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 349 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:02.560720Z","deletable":true,"description":"a description","editable":true,"id":"71e5d027-294d-4bd6-a586-e72600097120","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:02.560720Z"}' - headers: - Content-Length: - - "349" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:05 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: - - e699be27-ecbf-46a4-ac55-8182448e29d1 - status: 200 OK - code: 200 - duration: 245.244542ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"2a4215cf-3752-4c7b-bcf7-a2b28b209e56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:05 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: - - c40c66f0-6ab1-4923-a5a3-b39093f3a617 - status: 200 OK - code: 200 - duration: 50.437083ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/71e5d027-294d-4bd6-a586-e72600097120 - 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: - - Wed, 22 Jan 2025 15:33: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: - - 5459ee66-687e-4fa5-83ce-21d462d73cfd - status: 204 No Content - code: 204 - duration: 91.737917ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 139 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-tests-scaleway-iam-app-policy-permissions","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:07.381320Z","deletable":true,"description":"","editable":true,"id":"84a29cc5-5ca5-4e4b-bbcc-5cde15f0081d","managed":false,"name":"tf-tests-scaleway-iam-app-policy-permissions","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:07.381320Z"}' - headers: - Content-Length: - - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 9e880f20-ee84-483e-8598-901147dc7dfb - status: 200 OK - code: 200 - duration: 133.04625ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/84a29cc5-5ca5-4e4b-bbcc-5cde15f0081d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:07.381320Z","deletable":true,"description":"","editable":true,"id":"84a29cc5-5ca5-4e4b-bbcc-5cde15f0081d","managed":false,"name":"tf-tests-scaleway-iam-app-policy-permissions","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:07.381320Z"}' - headers: - Content-Length: - - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - b69f7170-6c04-45c9-bbb6-c45b0a893937 - status: 200 OK - code: 200 - duration: 51.287791ms - - id: 27 - 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: '{"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-tests-scaleway-iam-group-policy-permissions","description":"","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 366 - uncompressed: false - body: '{"application_ids":[],"created_at":"2025-01-22T15:33:07.543184Z","deletable":true,"description":"","editable":true,"id":"efb54816-098c-42d3-b13c-d0a44ec63507","managed":false,"name":"tf-tests-scaleway-iam-group-policy-permissions","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:07.543184Z","user_ids":[]}' - headers: - Content-Length: - - "366" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 4cc2d641-a4f5-4189-a49e-035d0ab6b34f - status: 200 OK - code: 200 - duration: 94.432625ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 74 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"user_ids":[],"application_ids":["84a29cc5-5ca5-4e4b-bbcc-5cde15f0081d"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/efb54816-098c-42d3-b13c-d0a44ec63507/members - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 406 - uncompressed: false - body: '{"application_ids":["84a29cc5-5ca5-4e4b-bbcc-5cde15f0081d"],"created_at":"2025-01-22T15:33:07.543184Z","deletable":false,"description":"","editable":false,"id":"efb54816-098c-42d3-b13c-d0a44ec63507","managed":false,"name":"tf-tests-scaleway-iam-group-policy-permissions","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:07.543184Z","user_ids":[]}' - headers: - Content-Length: - - "406" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 9458a176-fba8-46fb-ae22-0609e6621656 - status: 200 OK - code: 200 - duration: 346.273959ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/efb54816-098c-42d3-b13c-d0a44ec63507 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 404 - uncompressed: false - body: '{"application_ids":["84a29cc5-5ca5-4e4b-bbcc-5cde15f0081d"],"created_at":"2025-01-22T15:33:07.543184Z","deletable":true,"description":"","editable":true,"id":"efb54816-098c-42d3-b13c-d0a44ec63507","managed":false,"name":"tf-tests-scaleway-iam-group-policy-permissions","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:07.543184Z","user_ids":[]}' - headers: - Content-Length: - - "404" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 92932149-ee5f-4de3-a9bf-43d354a3e015 - status: 200 OK - code: 200 - duration: 48.775667ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 51 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"group_id":"efb54816-098c-42d3-b13c-d0a44ec63507"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 436 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:58.106439Z","deletable":true,"description":"a description","editable":true,"group_id":"efb54816-098c-42d3-b13c-d0a44ec63507","id":"f3c44b62-f668-48b9-b910-7dfb6df6bb1a","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:58.106439Z"}' - headers: - Content-Length: - - "436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - bd3e16b1-d2b7-470c-8724-f39f720279e3 - status: 200 OK - code: 200 - duration: 98.681125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 436 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:58.106439Z","deletable":true,"description":"a description","editable":true,"group_id":"efb54816-098c-42d3-b13c-d0a44ec63507","id":"f3c44b62-f668-48b9-b910-7dfb6df6bb1a","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:58.106439Z"}' - headers: - Content-Length: - - "436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 08e369cf-2256-49ec-a0e9-5e4032f25c67 - status: 200 OK - code: 200 - duration: 61.031542ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"2a4215cf-3752-4c7b-bcf7-a2b28b209e56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 7c005d87-599b-417a-b854-bbdcb9db61b0 - status: 200 OK - code: 200 - duration: 48.246917ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 436 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:58.106439Z","deletable":true,"description":"a description","editable":true,"group_id":"efb54816-098c-42d3-b13c-d0a44ec63507","id":"f3c44b62-f668-48b9-b910-7dfb6df6bb1a","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:58.106439Z"}' - headers: - Content-Length: - - "436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 9524d595-1aad-432b-ba20-03a27ff02f8b - status: 200 OK - code: 200 - duration: 88.08ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/84a29cc5-5ca5-4e4b-bbcc-5cde15f0081d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"created_at":"2025-01-22T15:33:07.381320Z","deletable":true,"description":"","editable":true,"id":"84a29cc5-5ca5-4e4b-bbcc-5cde15f0081d","managed":false,"name":"tf-tests-scaleway-iam-app-policy-permissions","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:07.381320Z"}' - headers: - Content-Length: - - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 714adc29-27d6-4720-808a-ac1a533c9803 - status: 200 OK - code: 200 - duration: 48.370125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/efb54816-098c-42d3-b13c-d0a44ec63507 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 404 - uncompressed: false - body: '{"application_ids":["84a29cc5-5ca5-4e4b-bbcc-5cde15f0081d"],"created_at":"2025-01-22T15:33:07.543184Z","deletable":true,"description":"","editable":true,"id":"efb54816-098c-42d3-b13c-d0a44ec63507","managed":false,"name":"tf-tests-scaleway-iam-group-policy-permissions","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:07.543184Z","user_ids":[]}' - headers: - Content-Length: - - "404" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - f5e4cdbd-06ed-4dd9-bfb5-8f6881de74cc - status: 200 OK - code: 200 - duration: 43.994042ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 436 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:58.106439Z","deletable":true,"description":"a description","editable":true,"group_id":"efb54816-098c-42d3-b13c-d0a44ec63507","id":"f3c44b62-f668-48b9-b910-7dfb6df6bb1a","managed":false,"name":"tf_tests_policy_change_linked_entity","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:58.106439Z"}' - headers: - Content-Length: - - "436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 21c50326-5d13-4e86-a67c-4f11dd334e91 - status: 200 OK - code: 200 - duration: 51.043667ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"2a4215cf-3752-4c7b-bcf7-a2b28b209e56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 3bee656b-6961-42f5-9d62-4106490eb091 - status: 200 OK - code: 200 - duration: 56.088208ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f3c44b62-f668-48b9-b910-7dfb6df6bb1a - 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: - - Wed, 22 Jan 2025 15:33: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: - - 6d745d51-c5fe-4dbb-bbcb-643223c6d84b - status: 204 No Content - code: 204 - duration: 68.470292ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/groups/efb54816-098c-42d3-b13c-d0a44ec63507 - 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: - - Wed, 22 Jan 2025 15:33: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: - - aa4de714-e0ca-49d1-ab85-e1300066f76b - status: 204 No Content - code: 204 - duration: 52.031375ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/84a29cc5-5ca5-4e4b-bbcc-5cde15f0081d - 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: - - Wed, 22 Jan 2025 15:33: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: - - 5ca56bc7-8848-4fb9-ba8d-2c8f418cf430 - status: 204 No Content - code: 204 - duration: 632.933542ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWV2249AGSCDXP026CF - 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: - - Wed, 22 Jan 2025 15:33: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: - - 362d78b7-281c-491a-81a5-dfe25d27a4d8 - status: 204 No Content - code: 204 - duration: 112.332625ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/b4c17d71-44ef-4de1-9118-45888e4ad0f2 - 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: - - Wed, 22 Jan 2025 15:33: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: - - d833cc88-e0e5-4b2f-a735-511ba3d93ef6 - status: 204 No Content - code: 204 - duration: 98.392625ms - - id: 43 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/9dd7a293-ec4c-4d52-86d0-60dffffc6042 - 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: - - Wed, 22 Jan 2025 15:33: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: - - 6def20ec-e605-4bdd-a6ea-5b9d8142cc68 - status: 204 No Content - code: 204 - duration: 104.160875ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/59539504-c0d9-452b-a589-c0aaff4d125a - 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: - - Wed, 22 Jan 2025 15:33: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: - - 4828a194-ef3e-42b3-bd27-2af08238b16e - status: 204 No Content - code: 204 - duration: 1.36264775s - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f3c44b62-f668-48b9-b910-7dfb6df6bb1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"policy","resource_id":"f3c44b62-f668-48b9-b910-7dfb6df6bb1a","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - b0092f43-004b-4ec1-a5cf-991c2adfba48 - status: 404 Not Found - code: 404 - duration: 24.575083ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 129 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-project-258843640640332392\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 286 + body: "{\"id\":\"e2d0ee75-d7d0-4ac4-89b4-8f5682cc9dbe\", \"name\":\"test-acc-scaleway-project-258843640640332392\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:23.559457Z\", \"updated_at\":\"2025-11-17T17:10:23.559457Z\", \"description\":\"\", \"qualification\":null}" + headers: + Content-Length: + - "286" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2318b9ac-39b5-40e8-b97c-76492672fa7e + status: 200 OK + code: 200 + duration: 395.258499ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 141 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-iam-app-450510698052926282\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":null}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"id\":\"6744ffd0-5e63-4f4a-b1c4-112fe21e3ea6\", \"name\":\"test-acc-scaleway-iam-app-450510698052926282\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:23.921426Z\", \"updated_at\":\"2025-11-17T17:10:23.921426Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "344" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d49d0dab-33b7-4b4e-b60e-ffd72def7ccd + status: 200 OK + code: 200 + duration: 214.163175ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 323 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-iam-policy-2336679808349943682\",\"description\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"rules\":[{\"permission_set_names\":[\"IAMManager\"],\"condition\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}],\"tags\":null,\"application_id\":\"6744ffd0-5e63-4f4a-b1c4-112fe21e3ea6\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"id\":\"fa34a4b7-6bb5-4011-b4e2-fbc7aa2b840f\", \"name\":\"test-acc-scaleway-iam-policy-2336679808349943682\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:24.170691Z\", \"updated_at\":\"2025-11-17T17:10:24.170691Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":0, \"nb_scopes\":0, \"nb_permission_sets\":0, \"tags\":[], \"application_id\":\"6744ffd0-5e63-4f4a-b1c4-112fe21e3ea6\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7c5d95dc-5f80-4253-859b-e2c80b2301b7 + status: 200 OK + code: 200 + duration: 367.81164ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 134 + host: api.scaleway.com + body: "{\"application_id\":\"6744ffd0-5e63-4f4a-b1c4-112fe21e3ea6\",\"default_project_id\":\"e2d0ee75-d7d0-4ac4-89b4-8f5682cc9dbe\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 416 + body: "{\"access_key\":\"SCW9TDKYXP7J29MBM6BH\", \"secret_key\":\"11111111-1111-1111-1111-111111111111\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:24.505627Z\", \"updated_at\":\"2025-11-17T17:10:24.505627Z\", \"expires_at\":null, \"default_project_id\":\"e2d0ee75-d7d0-4ac4-89b4-8f5682cc9dbe\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"6744ffd0-5e63-4f4a-b1c4-112fe21e3ea6\"}" + headers: + Content-Length: + - "416" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 98b8f7aa-3a3e-4783-a702-6cf475edcbe7 + status: 200 OK + code: 200 + duration: 243.047944ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 297 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_policy_change_linked_entity\",\"description\":\"a description\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"rules\":[{\"permission_set_names\":[\"AllProductsFullAccess\"],\"condition\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}],\"tags\":[],\"no_principal\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 406 + body: "{\"id\":\"a7742801-2d40-4201-9d38-3f5c02c0877f\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.439504Z\", \"updated_at\":\"2025-11-17T17:10:39.439504Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":0, \"nb_scopes\":0, \"nb_permission_sets\":0, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "406" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 695c5bc3-e02f-4c99-8baf-8c39beef2b93 + status: 200 OK + code: 200 + duration: 171.478092ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 406 + body: "{\"id\":\"a7742801-2d40-4201-9d38-3f5c02c0877f\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.439504Z\", \"updated_at\":\"2025-11-17T17:10:39.439504Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "406" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - eff1748f-ab7f-4116-aac8-7b4c550bd1d9 + status: 200 OK + code: 200 + duration: 127.283767ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - a7742801-2d40-4201-9d38-3f5c02c0877f + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"5080db92-5070-4c38-89dd-15d86cbfda67\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 11101ea0-3b54-45bd-bcaa-024512ed5d09 + status: 200 OK + code: 200 + duration: 110.1988ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 406 + body: "{\"id\":\"a7742801-2d40-4201-9d38-3f5c02c0877f\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.439504Z\", \"updated_at\":\"2025-11-17T17:10:39.439504Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "406" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 98222d58-efd5-4a7a-b787-4161f8e06f32 + status: 200 OK + code: 200 + duration: 61.712539ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 406 + body: "{\"id\":\"a7742801-2d40-4201-9d38-3f5c02c0877f\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.439504Z\", \"updated_at\":\"2025-11-17T17:10:39.439504Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "406" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b1a40251-66ec-4074-b6a7-da1d64e36bdc + status: 200 OK + code: 200 + duration: 51.170113ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - a7742801-2d40-4201-9d38-3f5c02c0877f + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"5080db92-5070-4c38-89dd-15d86cbfda67\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 43e029bb-d792-4fdb-a8e3-e1280873fab0 + status: 200 OK + code: 200 + duration: 93.926313ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 406 + body: "{\"id\":\"a7742801-2d40-4201-9d38-3f5c02c0877f\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.439504Z\", \"updated_at\":\"2025-11-17T17:10:39.439504Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "406" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6be21b22-a299-44dc-a5e8-89434dd7ca78 + status: 200 OK + code: 200 + duration: 81.062085ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - a7742801-2d40-4201-9d38-3f5c02c0877f + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"5080db92-5070-4c38-89dd-15d86cbfda67\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e0ac96ca-4780-4b04-9bd5-95711111634e + status: 200 OK + code: 200 + duration: 70.301471ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 144 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_policy_change_linked_entity\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"a description\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 349 + body: "{\"id\":\"b6a2893e-7902-45f8-b88a-699ed071a693\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"created_at\":\"2025-11-17T17:10:43.099704Z\", \"updated_at\":\"2025-11-17T17:10:43.099704Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "349" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0df03ab3-fc72-460a-813a-810ccccdae45 + status: 200 OK + code: 200 + duration: 166.012322ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/b6a2893e-7902-45f8-b88a-699ed071a693 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 349 + body: "{\"id\":\"b6a2893e-7902-45f8-b88a-699ed071a693\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"created_at\":\"2025-11-17T17:10:43.099704Z\", \"updated_at\":\"2025-11-17T17:10:43.099704Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "349" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e0ef69c8-bb42-4db5-b7bd-dc0b48d3d447 + status: 200 OK + code: 200 + duration: 134.106318ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 57 + host: api.scaleway.com + body: "{\"application_id\":\"b6a2893e-7902-45f8-b88a-699ed071a693\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a7742801-2d40-4201-9d38-3f5c02c0877f + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 442 + body: "{\"id\":\"a7742801-2d40-4201-9d38-3f5c02c0877f\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.439504Z\", \"updated_at\":\"2025-11-17T17:10:39.439504Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"application_id\":\"b6a2893e-7902-45f8-b88a-699ed071a693\"}" + headers: + Content-Length: + - "442" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8684455e-73bb-499d-9183-768681463fa1 + status: 200 OK + code: 200 + duration: 130.038157ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 442 + body: "{\"id\":\"a7742801-2d40-4201-9d38-3f5c02c0877f\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.439504Z\", \"updated_at\":\"2025-11-17T17:10:39.439504Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"application_id\":\"b6a2893e-7902-45f8-b88a-699ed071a693\"}" + headers: + Content-Length: + - "442" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - dcccbb07-d891-4a06-b421-52c44dd4ab5d + status: 200 OK + code: 200 + duration: 159.625401ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - a7742801-2d40-4201-9d38-3f5c02c0877f + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"5080db92-5070-4c38-89dd-15d86cbfda67\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 4037076f-5fba-4cc5-a075-b748992c27db + status: 200 OK + code: 200 + duration: 103.464743ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 442 + body: "{\"id\":\"a7742801-2d40-4201-9d38-3f5c02c0877f\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.439504Z\", \"updated_at\":\"2025-11-17T17:10:39.439504Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"application_id\":\"b6a2893e-7902-45f8-b88a-699ed071a693\"}" + headers: + Content-Length: + - "442" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 72a32817-8cb6-4ca1-b6ee-905254513b34 + status: 200 OK + code: 200 + duration: 200.705777ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/b6a2893e-7902-45f8-b88a-699ed071a693 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 349 + body: "{\"id\":\"b6a2893e-7902-45f8-b88a-699ed071a693\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"created_at\":\"2025-11-17T17:10:43.099704Z\", \"updated_at\":\"2025-11-17T17:10:43.099704Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "349" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - afeb2ba5-e1fd-42e7-b94e-958bd0f48a92 + status: 200 OK + code: 200 + duration: 86.191049ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 442 + body: "{\"id\":\"a7742801-2d40-4201-9d38-3f5c02c0877f\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.439504Z\", \"updated_at\":\"2025-11-17T17:10:39.439504Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"application_id\":\"b6a2893e-7902-45f8-b88a-699ed071a693\"}" + headers: + Content-Length: + - "442" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3efa952c-3966-4558-8f85-98d58b408860 + status: 200 OK + code: 200 + duration: 83.631251ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - a7742801-2d40-4201-9d38-3f5c02c0877f + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"5080db92-5070-4c38-89dd-15d86cbfda67\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6b294045-d13a-4027-8306-9a3a54a2770e + status: 200 OK + code: 200 + duration: 125.117987ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/b6a2893e-7902-45f8-b88a-699ed071a693 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 349 + body: "{\"id\":\"b6a2893e-7902-45f8-b88a-699ed071a693\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"created_at\":\"2025-11-17T17:10:43.099704Z\", \"updated_at\":\"2025-11-17T17:10:43.099704Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "349" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 431c4c83-d62f-4e1b-8e35-2cd5386adab8 + status: 200 OK + code: 200 + duration: 95.169027ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 442 + body: "{\"id\":\"a7742801-2d40-4201-9d38-3f5c02c0877f\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.439504Z\", \"updated_at\":\"2025-11-17T17:10:39.439504Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"application_id\":\"b6a2893e-7902-45f8-b88a-699ed071a693\"}" + headers: + Content-Length: + - "442" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a3698fc4-9672-448c-9c7d-c20686ce35de + status: 200 OK + code: 200 + duration: 104.726275ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - a7742801-2d40-4201-9d38-3f5c02c0877f + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"5080db92-5070-4c38-89dd-15d86cbfda67\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8926ce65-984f-4b69-b667-55c72bd79070 + status: 200 OK + code: 200 + duration: 90.618236ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/b6a2893e-7902-45f8-b88a-699ed071a693 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 88fa61c8-e32d-4d47-9872-928e6067d9b5 + status: 204 No Content + code: 204 + duration: 108.648262ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 139 + host: api.scaleway.com + body: "{\"name\":\"tf-tests-scaleway-iam-app-policy-permissions\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"id\":\"a6f40e14-8dfe-4431-9e43-b300d4f257d6\", \"name\":\"tf-tests-scaleway-iam-app-policy-permissions\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:47.203512Z\", \"updated_at\":\"2025-11-17T17:10:47.203512Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "344" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7becd0e7-ca32-4437-bdb1-e0a43f81b733 + status: 200 OK + code: 200 + duration: 143.533519ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/a6f40e14-8dfe-4431-9e43-b300d4f257d6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"id\":\"a6f40e14-8dfe-4431-9e43-b300d4f257d6\", \"name\":\"tf-tests-scaleway-iam-app-policy-permissions\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:47.203512Z\", \"updated_at\":\"2025-11-17T17:10:47.203512Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "344" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 4cb0595e-28ef-410a-bc9e-bb5ae57dbbf6 + status: 200 OK + code: 200 + duration: 110.434154ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 141 + host: api.scaleway.com + body: "{\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"name\":\"tf-tests-scaleway-iam-group-policy-permissions\",\"description\":\"\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 366 + body: "{\"id\":\"80f72b24-af03-4e23-af43-f144c41b04da\", \"created_at\":\"2025-11-17T17:10:47.467499Z\", \"updated_at\":\"2025-11-17T17:10:47.467499Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-scaleway-iam-group-policy-permissions\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "366" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 15b67b05-5d34-4e31-b457-9b3c225c48ec + status: 200 OK + code: 200 + duration: 144.794515ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 74 + host: api.scaleway.com + body: "{\"user_ids\":[],\"application_ids\":[\"a6f40e14-8dfe-4431-9e43-b300d4f257d6\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/80f72b24-af03-4e23-af43-f144c41b04da/members + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 404 + body: "{\"id\":\"80f72b24-af03-4e23-af43-f144c41b04da\", \"created_at\":\"2025-11-17T17:10:47.467499Z\", \"updated_at\":\"2025-11-17T17:10:47.467499Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-scaleway-iam-group-policy-permissions\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"a6f40e14-8dfe-4431-9e43-b300d4f257d6\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "404" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d7ce32d0-d130-40f2-94b5-026ef7452273 + status: 200 OK + code: 200 + duration: 192.770675ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/80f72b24-af03-4e23-af43-f144c41b04da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 404 + body: "{\"id\":\"80f72b24-af03-4e23-af43-f144c41b04da\", \"created_at\":\"2025-11-17T17:10:47.467499Z\", \"updated_at\":\"2025-11-17T17:10:47.467499Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-scaleway-iam-group-policy-permissions\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"a6f40e14-8dfe-4431-9e43-b300d4f257d6\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "404" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d2acab21-fc35-4afa-8c4c-8bc7b298d356 + status: 200 OK + code: 200 + duration: 92.749791ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 51 + host: api.scaleway.com + body: "{\"group_id\":\"80f72b24-af03-4e23-af43-f144c41b04da\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a7742801-2d40-4201-9d38-3f5c02c0877f + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 436 + body: "{\"id\":\"a7742801-2d40-4201-9d38-3f5c02c0877f\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.439504Z\", \"updated_at\":\"2025-11-17T17:10:39.439504Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"group_id\":\"80f72b24-af03-4e23-af43-f144c41b04da\"}" + headers: + Content-Length: + - "436" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 32d05c37-d5e6-4b5f-b8fd-9dab9bed1a62 + status: 200 OK + code: 200 + duration: 136.761543ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 436 + body: "{\"id\":\"a7742801-2d40-4201-9d38-3f5c02c0877f\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.439504Z\", \"updated_at\":\"2025-11-17T17:10:39.439504Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"group_id\":\"80f72b24-af03-4e23-af43-f144c41b04da\"}" + headers: + Content-Length: + - "436" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ad962830-91ea-44df-89f1-4b9aedd284d3 + status: 200 OK + code: 200 + duration: 75.228628ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - a7742801-2d40-4201-9d38-3f5c02c0877f + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"5080db92-5070-4c38-89dd-15d86cbfda67\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5018a136-2dc0-4aa4-9059-1158972fdab4 + status: 200 OK + code: 200 + duration: 103.320068ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 436 + body: "{\"id\":\"a7742801-2d40-4201-9d38-3f5c02c0877f\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.439504Z\", \"updated_at\":\"2025-11-17T17:10:39.439504Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"group_id\":\"80f72b24-af03-4e23-af43-f144c41b04da\"}" + headers: + Content-Length: + - "436" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a4496603-1bcb-4771-a775-7c2b28da4ffc + status: 200 OK + code: 200 + duration: 61.971189ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/a6f40e14-8dfe-4431-9e43-b300d4f257d6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"id\":\"a6f40e14-8dfe-4431-9e43-b300d4f257d6\", \"name\":\"tf-tests-scaleway-iam-app-policy-permissions\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:47.203512Z\", \"updated_at\":\"2025-11-17T17:10:47.203512Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "344" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a69b129d-b8a3-426a-8d10-43f852afeab2 + status: 200 OK + code: 200 + duration: 101.475969ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/80f72b24-af03-4e23-af43-f144c41b04da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 404 + body: "{\"id\":\"80f72b24-af03-4e23-af43-f144c41b04da\", \"created_at\":\"2025-11-17T17:10:47.467499Z\", \"updated_at\":\"2025-11-17T17:10:47.467499Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"tf-tests-scaleway-iam-group-policy-permissions\", \"description\":\"\", \"user_ids\":[], \"application_ids\":[\"a6f40e14-8dfe-4431-9e43-b300d4f257d6\"], \"tags\":[], \"editable\":true, \"deletable\":true, \"managed\":false}" + headers: + Content-Length: + - "404" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - eb53d86c-b6b1-4854-9735-59161f1d9fab + status: 200 OK + code: 200 + duration: 71.464285ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 436 + body: "{\"id\":\"a7742801-2d40-4201-9d38-3f5c02c0877f\", \"name\":\"tf_tests_policy_change_linked_entity\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.439504Z\", \"updated_at\":\"2025-11-17T17:10:39.439504Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"group_id\":\"80f72b24-af03-4e23-af43-f144c41b04da\"}" + headers: + Content-Length: + - "436" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1bbc9c6f-0e63-42bf-8825-5434ece2d941 + status: 200 OK + code: 200 + duration: 90.554775ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - a7742801-2d40-4201-9d38-3f5c02c0877f + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"5080db92-5070-4c38-89dd-15d86cbfda67\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 01d4eb70-b058-455e-b3f2-df8bfcaa3e7f + status: 200 OK + code: 200 + duration: 65.734147ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a7742801-2d40-4201-9d38-3f5c02c0877f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - fde43c39-e9e9-439b-8d31-cd39bf4b593d + status: 204 No Content + code: 204 + duration: 95.952495ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/groups/80f72b24-af03-4e23-af43-f144c41b04da + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - eadebff1-983b-4559-9586-0516c4d6a89e + status: 204 No Content + code: 204 + duration: 97.318237ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/a6f40e14-8dfe-4431-9e43-b300d4f257d6 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f739b526-6c13-4b3e-a15a-1057e69bdb4a + status: 204 No Content + code: 204 + duration: 110.523584ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ee559c8e-c549-42e9-bbcc-8465f629e88c + status: 204 No Content + code: 204 + duration: 157.017274ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/fa34a4b7-6bb5-4011-b4e2-fbc7aa2b840f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ffc0a6f5-849e-4123-ba5e-549c3cbf1c23 + status: 204 No Content + code: 204 + duration: 157.313459ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/6744ffd0-5e63-4f4a-b1c4-112fe21e3ea6 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d8adeebb-de93-406d-8db6-c16b8f0aeb72 + status: 204 No Content + code: 204 + duration: 50.737772ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/e2d0ee75-d7d0-4ac4-89b4-8f5682cc9dbe + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e76ed9d3-0efb-4de5-b714-9e11bd738e3f + status: 204 No Content + code: 204 + duration: 1.438732256s +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a7742801-2d40-4201-9d38-3f5c02c0877f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"policy\",\"resource_id\":\"a7742801-2d40-4201-9d38-3f5c02c0877f\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - bbc67d94-57be-4a67-b6da-7c294b071767 + status: 404 Not Found + code: 404 + duration: 42.44371ms diff --git a/internal/services/iam/testdata/policy-change-permissions.cassette.yaml b/internal/services/iam/testdata/policy-change-permissions.cassette.yaml index aa0b28845..202e9a13d 100644 --- a/internal/services/iam/testdata/policy-change-permissions.cassette.yaml +++ b/internal/services/iam/testdata/policy-change-permissions.cassette.yaml @@ -1,1575 +1,1062 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 130 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-project-5404244803372684352","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 265 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:33.365440Z","description":"","id":"d5cb12d5-d07d-4db8-9bca-a6d3c93e2291","name":"test-acc-scaleway-project-5404244803372684352","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T15:32:33.365440Z"}' - headers: - Content-Length: - - "265" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - da6a65d7-a2d3-48c6-824e-cb940f7bad72 - status: 200 OK - code: 200 - duration: 613.222833ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 142 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-iam-app-5453428515478351846","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":null}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 345 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:33.976766Z","deletable":true,"description":"","editable":true,"id":"afc1e5da-88dd-403e-be77-f4ec5fcc0a2c","managed":false,"name":"test-acc-scaleway-iam-app-5453428515478351846","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:33.976766Z"}' - headers: - Content-Length: - - "345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - cd9098c1-307e-4d25-a7c5-06232ebc69c4 - status: 200 OK - code: 200 - duration: 125.1185ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 323 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-iam-policy-6630132924765478050","description":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","rules":[{"permission_set_names":["IAMManager"],"condition":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf"}],"tags":null,"application_id":"afc1e5da-88dd-403e-be77-f4ec5fcc0a2c"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - body: '{"application_id":"afc1e5da-88dd-403e-be77-f4ec5fcc0a2c","created_at":"2025-01-22T15:32:34.110021Z","deletable":true,"description":"","editable":true,"id":"238eb7db-7c06-4c9a-a0a8-cfd7a7935392","managed":false,"name":"test-acc-scaleway-iam-policy-6630132924765478050","nb_permission_sets":0,"nb_rules":0,"nb_scopes":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:34.110021Z"}' - headers: - Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:34 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: - - a69a5447-021e-432e-a3b9-f94f2602a61d - status: 200 OK - code: 200 - duration: 181.139959ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 134 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"afc1e5da-88dd-403e-be77-f4ec5fcc0a2c","default_project_id":"d5cb12d5-d07d-4db8-9bca-a6d3c93e2291","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 414 - uncompressed: false - body: '{"access_key":"SCW1FW5KBJKNN53003TB","application_id":"afc1e5da-88dd-403e-be77-f4ec5fcc0a2c","created_at":"2025-01-22T15:32:34.367651Z","creation_ip":"51.159.73.9","default_project_id":"d5cb12d5-d07d-4db8-9bca-a6d3c93e2291","deletable":true,"description":"","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:32:34.367651Z"}' - headers: - Content-Length: - - "414" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:34 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: - - 663d0acf-0100-441f-8968-c4827edd2a85 - status: 200 OK - code: 200 - duration: 305.875375ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 294 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_policy_changepermissions","description":"a description","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","rules":[{"permission_set_names":["AllProductsFullAccess"],"condition":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf"}],"tags":[],"no_principal":true}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 403 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:57.208661Z","deletable":true,"description":"a description","editable":true,"id":"2cfcd708-eed4-4607-b3bd-a6271f17a001","managed":false,"name":"tf_tests_policy_changepermissions","nb_permission_sets":0,"nb_rules":0,"nb_scopes":0,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:57.208661Z"}' - headers: - Content-Length: - - "403" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 1160a2eb-01f9-4fcb-94d8-c3afe4039f29 - status: 200 OK - code: 200 - duration: 122.741416ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 403 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:57.208661Z","deletable":true,"description":"a description","editable":true,"id":"2cfcd708-eed4-4607-b3bd-a6271f17a001","managed":false,"name":"tf_tests_policy_changepermissions","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:57.208661Z"}' - headers: - Content-Length: - - "403" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 9862a7a3-9cd6-45fa-8667-5dbe4c15d68b - status: 200 OK - code: 200 - duration: 44.642834ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"93cb2454-96e2-461b-8840-514790a1746e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 3987c45d-8e1d-439e-b330-14e489dbbe08 - status: 200 OK - code: 200 - duration: 53.912958ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 403 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:57.208661Z","deletable":true,"description":"a description","editable":true,"id":"2cfcd708-eed4-4607-b3bd-a6271f17a001","managed":false,"name":"tf_tests_policy_changepermissions","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:57.208661Z"}' - headers: - Content-Length: - - "403" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 269c9671-5ea1-4afe-9e51-7719ea443a63 - status: 200 OK - code: 200 - duration: 110.257042ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 403 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:57.208661Z","deletable":true,"description":"a description","editable":true,"id":"2cfcd708-eed4-4607-b3bd-a6271f17a001","managed":false,"name":"tf_tests_policy_changepermissions","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:57.208661Z"}' - headers: - Content-Length: - - "403" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:58 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: - - 112c88a9-d46d-4c2f-996a-903c76489053 - status: 200 OK - code: 200 - duration: 56.257209ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"93cb2454-96e2-461b-8840-514790a1746e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:58 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: - - ca3fc46c-c406-4a84-8edd-5a2e870d3f6a - status: 200 OK - code: 200 - duration: 57.468125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 403 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:57.208661Z","deletable":true,"description":"a description","editable":true,"id":"2cfcd708-eed4-4607-b3bd-a6271f17a001","managed":false,"name":"tf_tests_policy_changepermissions","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:57.208661Z"}' - headers: - Content-Length: - - "403" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - 03d06ee5-13cf-4d62-9d08-82800a5499d2 - status: 200 OK - code: 200 - duration: 68.912666ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"93cb2454-96e2-461b-8840-514790a1746e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - d1d2f7fa-688d-4428-b47d-f409ac514d1d - status: 200 OK - code: 200 - duration: 59.332583ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 213 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"policy_id":"2cfcd708-eed4-4607-b3bd-a6271f17a001","rules":[{"permission_set_names":["AllProductsFullAccess","ContainerRegistryReadOnly"],"condition":"","organization_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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 251 - uncompressed: false - body: '{"rules":[{"condition":"","id":"e9d2d296-37f6-44ba-a202-3ddc1b0c5e78","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess","ContainerRegistryReadOnly"],"permission_sets_scope_type":"projects"}]}' - headers: - Content-Length: - - "251" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:01 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: - - eb00092b-190e-405d-aa61-8b668bab1d6a - status: 200 OK - code: 200 - duration: 99.506917ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 403 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:57.208661Z","deletable":true,"description":"a description","editable":true,"id":"2cfcd708-eed4-4607-b3bd-a6271f17a001","managed":false,"name":"tf_tests_policy_changepermissions","nb_permission_sets":2,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:01.528191Z"}' - headers: - Content-Length: - - "403" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:01 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: - - b722affd-db58-40bf-8832-a26120c69852 - status: 200 OK - code: 200 - duration: 55.325625ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 268 - uncompressed: false - body: '{"rules":[{"condition":"","id":"e9d2d296-37f6-44ba-a202-3ddc1b0c5e78","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess","ContainerRegistryReadOnly"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "268" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:01 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: - - 129eb852-a2db-4c52-b387-d2e3f3d962b3 - status: 200 OK - code: 200 - duration: 51.652667ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 403 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:57.208661Z","deletable":true,"description":"a description","editable":true,"id":"2cfcd708-eed4-4607-b3bd-a6271f17a001","managed":false,"name":"tf_tests_policy_changepermissions","nb_permission_sets":2,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:01.528191Z"}' - headers: - Content-Length: - - "403" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:02 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: - - 49466085-1665-46ec-b05c-948c7516c264 - status: 200 OK - code: 200 - duration: 104.080584ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 403 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:57.208661Z","deletable":true,"description":"a description","editable":true,"id":"2cfcd708-eed4-4607-b3bd-a6271f17a001","managed":false,"name":"tf_tests_policy_changepermissions","nb_permission_sets":2,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:01.528191Z"}' - headers: - Content-Length: - - "403" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:03 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: - - 29661036-f53c-403e-9db7-0437305a98e8 - status: 200 OK - code: 200 - duration: 66.730042ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 268 - uncompressed: false - body: '{"rules":[{"condition":"","id":"e9d2d296-37f6-44ba-a202-3ddc1b0c5e78","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess","ContainerRegistryReadOnly"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "268" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:03 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: - - 62a1f08b-e743-4778-be82-f3face8bc5a9 - status: 200 OK - code: 200 - duration: 50.711541ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 403 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:57.208661Z","deletable":true,"description":"a description","editable":true,"id":"2cfcd708-eed4-4607-b3bd-a6271f17a001","managed":false,"name":"tf_tests_policy_changepermissions","nb_permission_sets":2,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:01.528191Z"}' - headers: - Content-Length: - - "403" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:04 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: - - 7fa0a982-da95-40e7-8b1f-2ce1c5a2e58c - status: 200 OK - code: 200 - duration: 55.293416ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 268 - uncompressed: false - body: '{"rules":[{"condition":"","id":"e9d2d296-37f6-44ba-a202-3ddc1b0c5e78","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess","ContainerRegistryReadOnly"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "268" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:04 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: - - 8c3cebb5-362d-4a28-b7a6-cbda4339830c - status: 200 OK - code: 200 - duration: 58.269625ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 189 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"policy_id":"2cfcd708-eed4-4607-b3bd-a6271f17a001","rules":[{"permission_set_names":["ContainerRegistryReadOnly"],"condition":"","organization_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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 226 - uncompressed: false - body: '{"rules":[{"condition":"","id":"b06fd86b-7854-4fca-a72e-26eaade9b9c6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["ContainerRegistryReadOnly"],"permission_sets_scope_type":"projects"}]}' - headers: - Content-Length: - - "226" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:05 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: - - 9d5e7ee1-1e82-45bd-8155-84726cbdeb5e - status: 200 OK - code: 200 - duration: 77.819209ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 403 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:57.208661Z","deletable":true,"description":"a description","editable":true,"id":"2cfcd708-eed4-4607-b3bd-a6271f17a001","managed":false,"name":"tf_tests_policy_changepermissions","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:05.790111Z"}' - headers: - Content-Length: - - "403" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:05 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: - - 56d30592-91a0-46a3-a5bc-a9c8932bdd53 - status: 200 OK - code: 200 - duration: 54.788959ms - - id: 22 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 243 - uncompressed: false - body: '{"rules":[{"condition":"","id":"b06fd86b-7854-4fca-a72e-26eaade9b9c6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["ContainerRegistryReadOnly"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "243" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:05 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: - - b391958e-39c1-4e9d-8a7e-2b2100c578ee - status: 200 OK - code: 200 - duration: 49.156875ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 403 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:57.208661Z","deletable":true,"description":"a description","editable":true,"id":"2cfcd708-eed4-4607-b3bd-a6271f17a001","managed":false,"name":"tf_tests_policy_changepermissions","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:05.790111Z"}' - headers: - Content-Length: - - "403" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:06 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: - - 8cd95a3d-533d-442d-91e6-a2242e7749ba - status: 200 OK - code: 200 - duration: 95.887292ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 403 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:57.208661Z","deletable":true,"description":"a description","editable":true,"id":"2cfcd708-eed4-4607-b3bd-a6271f17a001","managed":false,"name":"tf_tests_policy_changepermissions","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:05.790111Z"}' - headers: - Content-Length: - - "403" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 37ec76f4-b59a-4410-a126-d81627ec0cdc - status: 200 OK - code: 200 - duration: 51.147792ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 243 - uncompressed: false - body: '{"rules":[{"condition":"","id":"b06fd86b-7854-4fca-a72e-26eaade9b9c6","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["ContainerRegistryReadOnly"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "243" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - e65cc595-8549-461a-9cf7-c4fe8af566b4 - status: 200 OK - code: 200 - duration: 57.623ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/2cfcd708-eed4-4607-b3bd-a6271f17a001 - 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: - - Wed, 22 Jan 2025 15:33: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: - - 62264bdb-9c65-4dc7-b2e5-394d68bfcc0c - status: 204 No Content - code: 204 - duration: 56.808166ms - - id: 27 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW1FW5KBJKNN53003TB - 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: - - Wed, 22 Jan 2025 15:33: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: - - 48193e17-359c-4558-91f6-edcbfdc880e0 - status: 204 No Content - code: 204 - duration: 90.089583ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/238eb7db-7c06-4c9a-a0a8-cfd7a7935392 - 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: - - Wed, 22 Jan 2025 15:33: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: - - 354f98a4-54db-4d46-9071-ed72969d4afc - status: 204 No Content - code: 204 - duration: 118.580833ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/afc1e5da-88dd-403e-be77-f4ec5fcc0a2c - 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: - - Wed, 22 Jan 2025 15:33: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: - - 69796f9f-2f4a-43e2-a95f-73169f9027c7 - status: 204 No Content - code: 204 - duration: 97.939459ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/d5cb12d5-d07d-4db8-9bca-a6d3c93e2291 - 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: - - Wed, 22 Jan 2025 15:33: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: - - ced94013-c3bf-4d4f-a55c-1b5d20b1ff9f - status: 204 No Content - code: 204 - duration: 1.293681625s - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/2cfcd708-eed4-4607-b3bd-a6271f17a001 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"policy","resource_id":"2cfcd708-eed4-4607-b3bd-a6271f17a001","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 910effaa-9c19-4399-af64-7fdf36c10396 - status: 404 Not Found - code: 404 - duration: 27.906042ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 130 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-project-4593247263111797997\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 287 + body: "{\"id\":\"bab093fe-a7ed-44be-8fa8-50510a0b0d27\", \"name\":\"test-acc-scaleway-project-4593247263111797997\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:24.786356Z\", \"updated_at\":\"2025-11-17T17:10:24.786356Z\", \"description\":\"\", \"qualification\":null}" + headers: + Content-Length: + - "287" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5bb07c89-6544-4d38-a1d9-0c8df394c901 + status: 200 OK + code: 200 + duration: 491.75298ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 142 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-iam-app-8862130677503300573\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":null}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 345 + body: "{\"id\":\"3046779a-cc15-4c8e-b698-5092300dd085\", \"name\":\"test-acc-scaleway-iam-app-8862130677503300573\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:25.260410Z\", \"updated_at\":\"2025-11-17T17:10:25.260410Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "345" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5cd6abd0-dd03-40c4-93c4-372729b8ea71 + status: 200 OK + code: 200 + duration: 244.485313ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 323 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-iam-policy-7819087606480075603\",\"description\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"rules\":[{\"permission_set_names\":[\"IAMManager\"],\"condition\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}],\"tags\":null,\"application_id\":\"3046779a-cc15-4c8e-b698-5092300dd085\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"id\":\"a9cedcbb-fb3b-4527-bef5-7358f0e0b3b7\", \"name\":\"test-acc-scaleway-iam-policy-7819087606480075603\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:25.480807Z\", \"updated_at\":\"2025-11-17T17:10:25.480807Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":0, \"nb_scopes\":0, \"nb_permission_sets\":0, \"tags\":[], \"application_id\":\"3046779a-cc15-4c8e-b698-5092300dd085\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ea0a4fcf-7178-4ed4-9371-cd8a7ababa44 + status: 200 OK + code: 200 + duration: 242.960819ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 134 + host: api.scaleway.com + body: "{\"application_id\":\"3046779a-cc15-4c8e-b698-5092300dd085\",\"default_project_id\":\"bab093fe-a7ed-44be-8fa8-50510a0b0d27\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 416 + body: "{\"access_key\":\"SCW9XPC7YF4VYWBGEARD\", \"secret_key\":\"11111111-1111-1111-1111-111111111111\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:25.845978Z\", \"updated_at\":\"2025-11-17T17:10:25.845978Z\", \"expires_at\":null, \"default_project_id\":\"bab093fe-a7ed-44be-8fa8-50510a0b0d27\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"3046779a-cc15-4c8e-b698-5092300dd085\"}" + headers: + Content-Length: + - "416" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - da5a2981-c181-434b-9c2e-798c31f9d926 + status: 200 OK + code: 200 + duration: 368.526599ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 294 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_policy_changepermissions\",\"description\":\"a description\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"rules\":[{\"permission_set_names\":[\"AllProductsFullAccess\"],\"condition\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}],\"tags\":[],\"no_principal\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 403 + body: "{\"id\":\"6c80ba51-ba8f-4e63-87a5-2c8850fab064\", \"name\":\"tf_tests_policy_changepermissions\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.428073Z\", \"updated_at\":\"2025-11-17T17:10:39.428073Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":0, \"nb_scopes\":0, \"nb_permission_sets\":0, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "403" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - db4f2535-a645-4532-b393-695f4ec5e0ba + status: 200 OK + code: 200 + duration: 199.238195ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 403 + body: "{\"id\":\"6c80ba51-ba8f-4e63-87a5-2c8850fab064\", \"name\":\"tf_tests_policy_changepermissions\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.428073Z\", \"updated_at\":\"2025-11-17T17:10:39.428073Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "403" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 832c2923-bbda-435e-9965-46a474bfff87 + status: 200 OK + code: 200 + duration: 129.789276ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 6c80ba51-ba8f-4e63-87a5-2c8850fab064 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"ac828119-29ba-445c-b66d-cb614d3c4640\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ad801cf6-79b3-4f17-9beb-61a741e1085d + status: 200 OK + code: 200 + duration: 110.811986ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 403 + body: "{\"id\":\"6c80ba51-ba8f-4e63-87a5-2c8850fab064\", \"name\":\"tf_tests_policy_changepermissions\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.428073Z\", \"updated_at\":\"2025-11-17T17:10:39.428073Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "403" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6cdd6f96-1431-4f7e-bbbd-120625b9235f + status: 200 OK + code: 200 + duration: 79.132827ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 403 + body: "{\"id\":\"6c80ba51-ba8f-4e63-87a5-2c8850fab064\", \"name\":\"tf_tests_policy_changepermissions\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.428073Z\", \"updated_at\":\"2025-11-17T17:10:39.428073Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "403" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5132bfb9-cb36-4a3e-9cbd-fbea37031d5d + status: 200 OK + code: 200 + duration: 114.968036ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 6c80ba51-ba8f-4e63-87a5-2c8850fab064 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"ac828119-29ba-445c-b66d-cb614d3c4640\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9090d0b8-afec-48ec-b076-18c1015e01f2 + status: 200 OK + code: 200 + duration: 89.874148ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 403 + body: "{\"id\":\"6c80ba51-ba8f-4e63-87a5-2c8850fab064\", \"name\":\"tf_tests_policy_changepermissions\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.428073Z\", \"updated_at\":\"2025-11-17T17:10:39.428073Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "403" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 27abd135-6fbf-4d7a-8a9f-150ffeb9da74 + status: 200 OK + code: 200 + duration: 116.965905ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 6c80ba51-ba8f-4e63-87a5-2c8850fab064 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"ac828119-29ba-445c-b66d-cb614d3c4640\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d5242144-d5d4-409a-9830-69ea6991b297 + status: 200 OK + code: 200 + duration: 149.138527ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 213 + host: api.scaleway.com + body: "{\"policy_id\":\"6c80ba51-ba8f-4e63-87a5-2c8850fab064\",\"rules\":[{\"permission_set_names\":[\"AllProductsFullAccess\",\"ContainerRegistryReadOnly\"],\"condition\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 251 + body: "{\"rules\":[{\"id\":\"d0bdc5e8-439b-4751-b80f-3ec6734e83a3\", \"permission_set_names\":[\"AllProductsFullAccess\", \"ContainerRegistryReadOnly\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}]}" + headers: + Content-Length: + - "251" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9210a88b-7359-48b6-982f-dd3994de80f1 + status: 200 OK + code: 200 + duration: 167.034798ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 403 + body: "{\"id\":\"6c80ba51-ba8f-4e63-87a5-2c8850fab064\", \"name\":\"tf_tests_policy_changepermissions\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.428073Z\", \"updated_at\":\"2025-11-17T17:10:43.276357Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":2, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "403" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - de75fcfe-a02e-4003-ba02-005c5b373968 + status: 200 OK + code: 200 + duration: 75.588812ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 6c80ba51-ba8f-4e63-87a5-2c8850fab064 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 268 + body: "{\"rules\":[{\"id\":\"d0bdc5e8-439b-4751-b80f-3ec6734e83a3\", \"permission_set_names\":[\"AllProductsFullAccess\", \"ContainerRegistryReadOnly\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "268" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 16dc2e6b-7ded-41e0-8f95-5c5ac02709b1 + status: 200 OK + code: 200 + duration: 107.984752ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 403 + body: "{\"id\":\"6c80ba51-ba8f-4e63-87a5-2c8850fab064\", \"name\":\"tf_tests_policy_changepermissions\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.428073Z\", \"updated_at\":\"2025-11-17T17:10:43.276357Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":2, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "403" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 261c3172-1185-4baa-a1c2-836c1f817de4 + status: 200 OK + code: 200 + duration: 79.295141ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 403 + body: "{\"id\":\"6c80ba51-ba8f-4e63-87a5-2c8850fab064\", \"name\":\"tf_tests_policy_changepermissions\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.428073Z\", \"updated_at\":\"2025-11-17T17:10:43.276357Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":2, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "403" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d113aa7f-d6e8-4303-a00b-359e2c332686 + status: 200 OK + code: 200 + duration: 60.851692ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 6c80ba51-ba8f-4e63-87a5-2c8850fab064 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 268 + body: "{\"rules\":[{\"id\":\"d0bdc5e8-439b-4751-b80f-3ec6734e83a3\", \"permission_set_names\":[\"AllProductsFullAccess\", \"ContainerRegistryReadOnly\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "268" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - cb0777ad-df69-44ed-a905-bc43a0e5132c + status: 200 OK + code: 200 + duration: 114.566568ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 403 + body: "{\"id\":\"6c80ba51-ba8f-4e63-87a5-2c8850fab064\", \"name\":\"tf_tests_policy_changepermissions\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.428073Z\", \"updated_at\":\"2025-11-17T17:10:43.276357Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":2, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "403" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f4a992ba-541a-49a9-87f5-65c0b6091331 + status: 200 OK + code: 200 + duration: 89.990105ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 6c80ba51-ba8f-4e63-87a5-2c8850fab064 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 268 + body: "{\"rules\":[{\"id\":\"d0bdc5e8-439b-4751-b80f-3ec6734e83a3\", \"permission_set_names\":[\"AllProductsFullAccess\", \"ContainerRegistryReadOnly\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "268" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 74e2d869-cd94-4e06-a1f3-65f9d00854a3 + status: 200 OK + code: 200 + duration: 85.283242ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 189 + host: api.scaleway.com + body: "{\"policy_id\":\"6c80ba51-ba8f-4e63-87a5-2c8850fab064\",\"rules\":[{\"permission_set_names\":[\"ContainerRegistryReadOnly\"],\"condition\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 226 + body: "{\"rules\":[{\"id\":\"2b2c8e7e-41e9-4264-8d2c-e1fb30810fe0\", \"permission_set_names\":[\"ContainerRegistryReadOnly\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}]}" + headers: + Content-Length: + - "226" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 026486a5-4a66-4683-bef0-85658011e459 + status: 200 OK + code: 200 + duration: 144.364636ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 403 + body: "{\"id\":\"6c80ba51-ba8f-4e63-87a5-2c8850fab064\", \"name\":\"tf_tests_policy_changepermissions\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.428073Z\", \"updated_at\":\"2025-11-17T17:10:46.691808Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "403" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3fda8f16-3235-46e9-b99a-856568b27145 + status: 200 OK + code: 200 + duration: 47.99934ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 6c80ba51-ba8f-4e63-87a5-2c8850fab064 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 243 + body: "{\"rules\":[{\"id\":\"2b2c8e7e-41e9-4264-8d2c-e1fb30810fe0\", \"permission_set_names\":[\"ContainerRegistryReadOnly\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "243" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 45475e74-92b7-4a34-930b-b05e9a31b004 + status: 200 OK + code: 200 + duration: 124.489766ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 403 + body: "{\"id\":\"6c80ba51-ba8f-4e63-87a5-2c8850fab064\", \"name\":\"tf_tests_policy_changepermissions\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.428073Z\", \"updated_at\":\"2025-11-17T17:10:46.691808Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "403" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8b2ff836-1f87-4657-8d7b-94d930aac7f5 + status: 200 OK + code: 200 + duration: 60.320198ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 403 + body: "{\"id\":\"6c80ba51-ba8f-4e63-87a5-2c8850fab064\", \"name\":\"tf_tests_policy_changepermissions\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:39.428073Z\", \"updated_at\":\"2025-11-17T17:10:46.691808Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "403" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2db90866-85ee-4a10-a3e9-dabb2c08826d + status: 200 OK + code: 200 + duration: 77.26535ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 6c80ba51-ba8f-4e63-87a5-2c8850fab064 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 243 + body: "{\"rules\":[{\"id\":\"2b2c8e7e-41e9-4264-8d2c-e1fb30810fe0\", \"permission_set_names\":[\"ContainerRegistryReadOnly\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "243" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f8342d45-5cf2-4110-a53d-0b53c5e765ed + status: 200 OK + code: 200 + duration: 52.517937ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 38f4fc3b-b922-41c5-9060-e7d40f6cf391 + status: 204 No Content + code: 204 + duration: 194.00042ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c965c995-7f2d-45d4-97cd-465567adf631 + status: 204 No Content + code: 204 + duration: 165.939208ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/a9cedcbb-fb3b-4527-bef5-7358f0e0b3b7 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7c1c83b2-bb9d-4401-b7c7-5f62822a91d6 + status: 204 No Content + code: 204 + duration: 240.997028ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/3046779a-cc15-4c8e-b698-5092300dd085 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6f424ba8-f8da-4ff2-9a10-9ed309f2c9d1 + status: 204 No Content + code: 204 + duration: 224.314591ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/bab093fe-a7ed-44be-8fa8-50510a0b0d27 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 14dbbc2d-c9f2-439e-978a-b772bda748f8 + status: 204 No Content + code: 204 + duration: 1.399486915s +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/6c80ba51-ba8f-4e63-87a5-2c8850fab064 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"policy\",\"resource_id\":\"6c80ba51-ba8f-4e63-87a5-2c8850fab064\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0a3f259c-fa0b-4b70-840d-50468b3b9aa0 + status: 404 Not Found + code: 404 + duration: 86.885212ms diff --git a/internal/services/iam/testdata/policy-change-rule-principal.cassette.yaml b/internal/services/iam/testdata/policy-change-rule-principal.cassette.yaml index 9feb44e1b..328a7f601 100644 --- a/internal/services/iam/testdata/policy-change-rule-principal.cassette.yaml +++ b/internal/services/iam/testdata/policy-change-rule-principal.cassette.yaml @@ -1,1181 +1,794 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 130 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-project-3923448235317047630","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 265 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:36.276675Z","description":"","id":"2f6352a4-b434-4e5a-9d46-e229f758105a","name":"test-acc-scaleway-project-3923448235317047630","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T15:32:36.276675Z"}' - headers: - Content-Length: - - "265" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:36 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: - - 97645741-c1a1-42cf-af81-76d068a4dc79 - status: 200 OK - code: 200 - duration: 389.947208ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 142 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-iam-app-6757352182290578120","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":null}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 345 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:36.642309Z","deletable":true,"description":"","editable":true,"id":"08f202f8-b6fb-4ff9-afca-38d0376af81b","managed":false,"name":"test-acc-scaleway-iam-app-6757352182290578120","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:36.642309Z"}' - headers: - Content-Length: - - "345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:36 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: - - ea09b2bb-3898-48a9-8b4e-efdd468d7df1 - status: 200 OK - code: 200 - duration: 126.942958ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 323 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-iam-policy-1803321732000658166","description":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","rules":[{"permission_set_names":["IAMManager"],"condition":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf"}],"tags":null,"application_id":"08f202f8-b6fb-4ff9-afca-38d0376af81b"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - body: '{"application_id":"08f202f8-b6fb-4ff9-afca-38d0376af81b","created_at":"2025-01-22T15:32:36.759939Z","deletable":true,"description":"","editable":true,"id":"516492de-a2e8-4ba0-bf26-4026d7fa7409","managed":false,"name":"test-acc-scaleway-iam-policy-1803321732000658166","nb_permission_sets":0,"nb_rules":0,"nb_scopes":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:36.759939Z"}' - headers: - Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:36 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: - - b304305e-e713-4d37-b92e-605e8b59c72b - status: 200 OK - code: 200 - duration: 149.127375ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 134 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"08f202f8-b6fb-4ff9-afca-38d0376af81b","default_project_id":"2f6352a4-b434-4e5a-9d46-e229f758105a","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 414 - uncompressed: false - body: '{"access_key":"SCW9KV5Z29KXZGW4Q0CB","application_id":"08f202f8-b6fb-4ff9-afca-38d0376af81b","created_at":"2025-01-22T15:32:36.998327Z","creation_ip":"51.159.73.9","default_project_id":"2f6352a4-b434-4e5a-9d46-e229f758105a","deletable":true,"description":"","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:32:36.998327Z"}' - headers: - Content-Length: - - "414" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:37 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: - - e5046833-68f3-4999-9b03-b8ab79a7ee30 - status: 200 OK - code: 200 - duration: 235.746416ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 296 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_policy_changeruleprincipal","description":"a description","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","rules":[{"permission_set_names":["AllProductsFullAccess"],"condition":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf"}],"tags":[],"no_principal":true}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.623693Z","deletable":true,"description":"a description","editable":true,"id":"b93423b9-9d7b-436d-82f2-35f69ed73c44","managed":false,"name":"tf_tests_policy_changeruleprincipal","nb_permission_sets":0,"nb_rules":0,"nb_scopes":0,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.623693Z"}' - headers: - Content-Length: - - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 5ade1185-7aff-4148-b1ef-48b03e22fd3c - status: 200 OK - code: 200 - duration: 155.962792ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/b93423b9-9d7b-436d-82f2-35f69ed73c44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.623693Z","deletable":true,"description":"a description","editable":true,"id":"b93423b9-9d7b-436d-82f2-35f69ed73c44","managed":false,"name":"tf_tests_policy_changeruleprincipal","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.623693Z"}' - headers: - Content-Length: - - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 65d757da-9a72-4be5-bbd1-2e94d5369c47 - status: 200 OK - code: 200 - duration: 70.183166ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=b93423b9-9d7b-436d-82f2-35f69ed73c44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"e20fe757-859b-4127-ad6a-cd55525b302c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - a5f24cd9-98ff-4354-9978-2f330a3370b2 - status: 200 OK - code: 200 - duration: 58.845791ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/b93423b9-9d7b-436d-82f2-35f69ed73c44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.623693Z","deletable":true,"description":"a description","editable":true,"id":"b93423b9-9d7b-436d-82f2-35f69ed73c44","managed":false,"name":"tf_tests_policy_changeruleprincipal","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.623693Z"}' - headers: - Content-Length: - - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 80c1e7c3-5c85-4e6b-b062-172d29d885af - status: 200 OK - code: 200 - duration: 87.983833ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/b93423b9-9d7b-436d-82f2-35f69ed73c44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.623693Z","deletable":true,"description":"a description","editable":true,"id":"b93423b9-9d7b-436d-82f2-35f69ed73c44","managed":false,"name":"tf_tests_policy_changeruleprincipal","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.623693Z"}' - headers: - Content-Length: - - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - ec2b54db-f2c3-40f6-a99e-87f8fb41c269 - status: 200 OK - code: 200 - duration: 105.136084ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=b93423b9-9d7b-436d-82f2-35f69ed73c44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"e20fe757-859b-4127-ad6a-cd55525b302c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 7b315899-ccde-4459-8519-d0c3d72922a7 - status: 200 OK - code: 200 - duration: 64.856208ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/b93423b9-9d7b-436d-82f2-35f69ed73c44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.623693Z","deletable":true,"description":"a description","editable":true,"id":"b93423b9-9d7b-436d-82f2-35f69ed73c44","managed":false,"name":"tf_tests_policy_changeruleprincipal","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.623693Z"}' - headers: - Content-Length: - - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 0e656456-6e4c-4a72-b4a8-7f9fa5c085ed - status: 200 OK - code: 200 - duration: 48.600833ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=b93423b9-9d7b-436d-82f2-35f69ed73c44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"e20fe757-859b-4127-ad6a-cd55525b302c","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - d6465d09-ae0b-45c1-a143-d2697a5d648a - status: 200 OK - code: 200 - duration: 55.223917ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 183 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"policy_id":"b93423b9-9d7b-436d-82f2-35f69ed73c44","rules":[{"permission_set_names":["AllProductsFullAccess"],"condition":"","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 220 - uncompressed: false - body: '{"rules":[{"condition":"","id":"35bef84b-caf8-4064-aa6e-cce8f9f0614e","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}]}' - headers: - Content-Length: - - "220" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:43 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: - - 89704aff-0643-45b2-a16f-7961f4bb2695 - status: 200 OK - code: 200 - duration: 72.327375ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/b93423b9-9d7b-436d-82f2-35f69ed73c44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.623693Z","deletable":true,"description":"a description","editable":true,"id":"b93423b9-9d7b-436d-82f2-35f69ed73c44","managed":false,"name":"tf_tests_policy_changeruleprincipal","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:43.739258Z"}' - headers: - Content-Length: - - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:43 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: - - 5f5f72f7-c90b-40ea-a8bc-fda464e8d5c2 - status: 200 OK - code: 200 - duration: 71.763083ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=b93423b9-9d7b-436d-82f2-35f69ed73c44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 237 - uncompressed: false - body: '{"rules":[{"condition":"","id":"35bef84b-caf8-4064-aa6e-cce8f9f0614e","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}],"total_count":1}' - headers: - Content-Length: - - "237" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:43 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: - - 5f1a8b44-41c2-418f-be39-d3737fe5fed3 - status: 200 OK - code: 200 - duration: 71.486417ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/b93423b9-9d7b-436d-82f2-35f69ed73c44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.623693Z","deletable":true,"description":"a description","editable":true,"id":"b93423b9-9d7b-436d-82f2-35f69ed73c44","managed":false,"name":"tf_tests_policy_changeruleprincipal","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:43.739258Z"}' - headers: - Content-Length: - - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:44 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: - - 5d6c9249-cef1-4bdd-a05b-c7529c866005 - status: 200 OK - code: 200 - duration: 111.547667ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/b93423b9-9d7b-436d-82f2-35f69ed73c44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.623693Z","deletable":true,"description":"a description","editable":true,"id":"b93423b9-9d7b-436d-82f2-35f69ed73c44","managed":false,"name":"tf_tests_policy_changeruleprincipal","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:43.739258Z"}' - headers: - Content-Length: - - "405" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - 23092716-726f-46f8-b554-9145c9a97598 - status: 200 OK - code: 200 - duration: 46.579291ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=b93423b9-9d7b-436d-82f2-35f69ed73c44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 237 - uncompressed: false - body: '{"rules":[{"condition":"","id":"35bef84b-caf8-4064-aa6e-cce8f9f0614e","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}],"total_count":1}' - headers: - Content-Length: - - "237" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - 8caed6f9-e252-4da4-805a-cf3d059eec02 - status: 200 OK - code: 200 - duration: 60.132417ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/b93423b9-9d7b-436d-82f2-35f69ed73c44 - 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: - - Wed, 22 Jan 2025 15:32:46 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: - - fa6a170f-2b3f-4bb7-a0cf-fc1b9874c860 - status: 204 No Content - code: 204 - duration: 80.528667ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW9KV5Z29KXZGW4Q0CB - 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: - - Wed, 22 Jan 2025 15:32: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: - - f81cfaf8-bd76-4688-a9ef-3087a635f38b - status: 204 No Content - code: 204 - duration: 104.876ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/516492de-a2e8-4ba0-bf26-4026d7fa7409 - 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: - - Wed, 22 Jan 2025 15:32: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: - - e7d94d66-f4da-4763-add0-d3481e3ee90e - status: 204 No Content - code: 204 - duration: 102.107833ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/08f202f8-b6fb-4ff9-afca-38d0376af81b - 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: - - Wed, 22 Jan 2025 15:32: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: - - dff277de-d17b-4b85-9fd3-2386a75660e8 - status: 204 No Content - code: 204 - duration: 108.673958ms - - id: 22 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/2f6352a4-b434-4e5a-9d46-e229f758105a - 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: - - Wed, 22 Jan 2025 15:32:48 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: - - 574a7b43-8aa0-4bff-a297-74afebb5af83 - status: 204 No Content - code: 204 - duration: 1.406151916s - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/b93423b9-9d7b-436d-82f2-35f69ed73c44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"policy","resource_id":"b93423b9-9d7b-436d-82f2-35f69ed73c44","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - a568f1e8-3169-4bf3-89cd-f98de47d1b6e - status: 404 Not Found - code: 404 - duration: 25.673083ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 130 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-project-3013363563443680398\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 287 + body: "{\"id\":\"129cff82-8a46-4662-9420-60b41dbc8970\", \"name\":\"test-acc-scaleway-project-3013363563443680398\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:28.336098Z\", \"updated_at\":\"2025-11-17T17:10:28.336098Z\", \"description\":\"\", \"qualification\":null}" + headers: + Content-Length: + - "287" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c956c125-ae77-41fb-9c3d-401417d4be64 + status: 200 OK + code: 200 + duration: 362.287208ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 142 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-iam-app-4986595117306118332\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":null}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 345 + body: "{\"id\":\"a7a8088f-999f-4967-ba7e-7f8067c2653a\", \"name\":\"test-acc-scaleway-iam-app-4986595117306118332\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:28.810787Z\", \"updated_at\":\"2025-11-17T17:10:28.810787Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "345" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5847fb03-3057-4475-8ce0-b58d83d2ebb1 + status: 200 OK + code: 200 + duration: 199.11231ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 323 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-iam-policy-8292882393260419796\",\"description\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"rules\":[{\"permission_set_names\":[\"IAMManager\"],\"condition\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}],\"tags\":null,\"application_id\":\"a7a8088f-999f-4967-ba7e-7f8067c2653a\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"id\":\"aab68974-dd14-4d58-8283-23663860ec8d\", \"name\":\"test-acc-scaleway-iam-policy-8292882393260419796\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:29.023994Z\", \"updated_at\":\"2025-11-17T17:10:29.023994Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":0, \"nb_scopes\":0, \"nb_permission_sets\":0, \"tags\":[], \"application_id\":\"a7a8088f-999f-4967-ba7e-7f8067c2653a\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0a55d063-a264-4db3-8cfb-a715940c377c + status: 200 OK + code: 200 + duration: 292.743009ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 134 + host: api.scaleway.com + body: "{\"application_id\":\"a7a8088f-999f-4967-ba7e-7f8067c2653a\",\"default_project_id\":\"129cff82-8a46-4662-9420-60b41dbc8970\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 416 + body: "{\"access_key\":\"SCWZ5YGTZGGN3H5EMQ8T\", \"secret_key\":\"11111111-1111-1111-1111-111111111111\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:29.389238Z\", \"updated_at\":\"2025-11-17T17:10:29.389238Z\", \"expires_at\":null, \"default_project_id\":\"129cff82-8a46-4662-9420-60b41dbc8970\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"a7a8088f-999f-4967-ba7e-7f8067c2653a\"}" + headers: + Content-Length: + - "416" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - bab57b3e-6319-4fc9-a0c7-8cc1872a944d + status: 200 OK + code: 200 + duration: 369.282541ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 296 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_policy_changeruleprincipal\",\"description\":\"a description\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"rules\":[{\"permission_set_names\":[\"AllProductsFullAccess\"],\"condition\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}],\"tags\":[],\"no_principal\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 405 + body: "{\"id\":\"5427b393-f364-41be-a212-e7b6d87fbe65\", \"name\":\"tf_tests_policy_changeruleprincipal\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:48.547775Z\", \"updated_at\":\"2025-11-17T17:10:48.547775Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":0, \"nb_scopes\":0, \"nb_permission_sets\":0, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "405" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5683243f-3d3e-4d71-a155-a66b762143e3 + status: 200 OK + code: 200 + duration: 183.091485ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5427b393-f364-41be-a212-e7b6d87fbe65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 405 + body: "{\"id\":\"5427b393-f364-41be-a212-e7b6d87fbe65\", \"name\":\"tf_tests_policy_changeruleprincipal\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:48.547775Z\", \"updated_at\":\"2025-11-17T17:10:48.547775Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "405" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ce84a04b-23bf-4135-ac54-9eb14aad47e5 + status: 200 OK + code: 200 + duration: 139.560745ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 5427b393-f364-41be-a212-e7b6d87fbe65 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=5427b393-f364-41be-a212-e7b6d87fbe65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"66f1d551-6cd9-43d0-bd32-fab87c03d87f\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d578ba5f-3e44-48c3-9a8f-e0b2294448bf + status: 200 OK + code: 200 + duration: 74.779521ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5427b393-f364-41be-a212-e7b6d87fbe65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 405 + body: "{\"id\":\"5427b393-f364-41be-a212-e7b6d87fbe65\", \"name\":\"tf_tests_policy_changeruleprincipal\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:48.547775Z\", \"updated_at\":\"2025-11-17T17:10:48.547775Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "405" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6c8ab048-8c79-44c7-ac46-28f7a358f671 + status: 200 OK + code: 200 + duration: 58.219859ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5427b393-f364-41be-a212-e7b6d87fbe65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 405 + body: "{\"id\":\"5427b393-f364-41be-a212-e7b6d87fbe65\", \"name\":\"tf_tests_policy_changeruleprincipal\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:48.547775Z\", \"updated_at\":\"2025-11-17T17:10:48.547775Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "405" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 15066486-b807-414c-8bdd-e1e08d493f6f + status: 200 OK + code: 200 + duration: 95.819842ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 5427b393-f364-41be-a212-e7b6d87fbe65 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=5427b393-f364-41be-a212-e7b6d87fbe65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"66f1d551-6cd9-43d0-bd32-fab87c03d87f\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 604582cf-507b-4811-8f15-e061f640f5c8 + status: 200 OK + code: 200 + duration: 106.530834ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5427b393-f364-41be-a212-e7b6d87fbe65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 405 + body: "{\"id\":\"5427b393-f364-41be-a212-e7b6d87fbe65\", \"name\":\"tf_tests_policy_changeruleprincipal\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:48.547775Z\", \"updated_at\":\"2025-11-17T17:10:48.547775Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "405" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3cbbdc5b-ded9-4c13-89ee-010210bcbfa0 + status: 200 OK + code: 200 + duration: 106.498732ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 5427b393-f364-41be-a212-e7b6d87fbe65 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=5427b393-f364-41be-a212-e7b6d87fbe65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"66f1d551-6cd9-43d0-bd32-fab87c03d87f\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2ef01503-e51b-453e-8335-e539bfb2ab4d + status: 200 OK + code: 200 + duration: 78.392656ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 183 + host: api.scaleway.com + body: "{\"policy_id\":\"5427b393-f364-41be-a212-e7b6d87fbe65\",\"rules\":[{\"permission_set_names\":[\"AllProductsFullAccess\"],\"condition\":\"\",\"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 220 + body: "{\"rules\":[{\"id\":\"85b4082d-f05a-4a74-aa13-6bc5e78ad83f\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}]}" + headers: + Content-Length: + - "220" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0779f084-dac7-4c75-9bb4-918ba36c98c1 + status: 200 OK + code: 200 + duration: 87.055054ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5427b393-f364-41be-a212-e7b6d87fbe65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 405 + body: "{\"id\":\"5427b393-f364-41be-a212-e7b6d87fbe65\", \"name\":\"tf_tests_policy_changeruleprincipal\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:48.547775Z\", \"updated_at\":\"2025-11-17T17:10:51.700366Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "405" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0cafde82-7c0d-4ec0-a839-c1de24c9f8ab + status: 200 OK + code: 200 + duration: 100.588954ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 5427b393-f364-41be-a212-e7b6d87fbe65 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=5427b393-f364-41be-a212-e7b6d87fbe65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 237 + body: "{\"rules\":[{\"id\":\"85b4082d-f05a-4a74-aa13-6bc5e78ad83f\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}], \"total_count\":1}" + headers: + Content-Length: + - "237" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 34311125-663f-4c96-b220-e60dc47c2542 + status: 200 OK + code: 200 + duration: 70.675092ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5427b393-f364-41be-a212-e7b6d87fbe65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 405 + body: "{\"id\":\"5427b393-f364-41be-a212-e7b6d87fbe65\", \"name\":\"tf_tests_policy_changeruleprincipal\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:48.547775Z\", \"updated_at\":\"2025-11-17T17:10:51.700366Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "405" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2ef9f297-4681-4e26-8c4a-db8e7ce767a5 + status: 200 OK + code: 200 + duration: 103.912863ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5427b393-f364-41be-a212-e7b6d87fbe65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 405 + body: "{\"id\":\"5427b393-f364-41be-a212-e7b6d87fbe65\", \"name\":\"tf_tests_policy_changeruleprincipal\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:48.547775Z\", \"updated_at\":\"2025-11-17T17:10:51.700366Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "405" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - bf4dfb3b-ff94-4bb2-afc9-6d7e8be030d0 + status: 200 OK + code: 200 + duration: 100.594569ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 5427b393-f364-41be-a212-e7b6d87fbe65 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=5427b393-f364-41be-a212-e7b6d87fbe65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 237 + body: "{\"rules\":[{\"id\":\"85b4082d-f05a-4a74-aa13-6bc5e78ad83f\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}], \"total_count\":1}" + headers: + Content-Length: + - "237" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 73774e4e-1ce3-4f39-a8c1-1564231f29bc + status: 200 OK + code: 200 + duration: 81.06528ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5427b393-f364-41be-a212-e7b6d87fbe65 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 251e502a-d335-4c64-b0cc-d2683832e302 + status: 204 No Content + code: 204 + duration: 112.217165ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 19832459-51de-40c7-bded-28db0a28ee01 + status: 204 No Content + code: 204 + duration: 80.308867ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/aab68974-dd14-4d58-8283-23663860ec8d + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0de3947a-0fca-46ef-a530-584332199cf6 + status: 204 No Content + code: 204 + duration: 162.991483ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/a7a8088f-999f-4967-ba7e-7f8067c2653a + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 48b24433-2e79-4cc0-88b8-3b31d675ba69 + status: 204 No Content + code: 204 + duration: 114.045299ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/129cff82-8a46-4662-9420-60b41dbc8970 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b994a673-94b9-4f8c-a087-0288a1476080 + status: 204 No Content + code: 204 + duration: 1.347421085s +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5427b393-f364-41be-a212-e7b6d87fbe65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"policy\",\"resource_id\":\"5427b393-f364-41be-a212-e7b6d87fbe65\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 61edd2fc-5f16-41de-a3fe-49bf7610503a + status: 404 Not Found + code: 404 + duration: 34.057949ms diff --git a/internal/services/iam/testdata/policy-condition.cassette.yaml b/internal/services/iam/testdata/policy-condition.cassette.yaml index 05a68d3ff..312833b2c 100644 --- a/internal/services/iam/testdata/policy-condition.cassette.yaml +++ b/internal/services/iam/testdata/policy-condition.cassette.yaml @@ -1,1575 +1,1062 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 130 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-project-3969360057667265698","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 265 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:35.427857Z","description":"","id":"c06db458-5c7d-4372-a954-d0dadbf8a092","name":"test-acc-scaleway-project-3969360057667265698","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T15:32:35.427857Z"}' - headers: - Content-Length: - - "265" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - b1730616-ffc7-44ca-8fd6-859e75ec0c66 - status: 200 OK - code: 200 - duration: 296.784125ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 142 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-iam-app-4824602672849477502","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":null}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 345 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:35.785413Z","deletable":true,"description":"","editable":true,"id":"dddb6bd8-baba-404c-ae56-7a8b198374cb","managed":false,"name":"test-acc-scaleway-iam-app-4824602672849477502","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:35.785413Z"}' - headers: - Content-Length: - - "345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 6900a252-34f5-44d1-8507-b0c0a4753b83 - status: 200 OK - code: 200 - duration: 196.461084ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 323 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-iam-policy-1120243169265063261","description":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","rules":[{"permission_set_names":["IAMManager"],"condition":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf"}],"tags":null,"application_id":"dddb6bd8-baba-404c-ae56-7a8b198374cb"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - body: '{"application_id":"dddb6bd8-baba-404c-ae56-7a8b198374cb","created_at":"2025-01-22T15:32:35.895686Z","deletable":true,"description":"","editable":true,"id":"f1086116-0fef-4007-98da-fb1ed4f071d4","managed":false,"name":"test-acc-scaleway-iam-policy-1120243169265063261","nb_permission_sets":0,"nb_rules":0,"nb_scopes":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:35.895686Z"}' - headers: - Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 174bc7ca-a455-428e-ba05-16f7697362bf - status: 200 OK - code: 200 - duration: 145.779708ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 134 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"dddb6bd8-baba-404c-ae56-7a8b198374cb","default_project_id":"c06db458-5c7d-4372-a954-d0dadbf8a092","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 414 - uncompressed: false - body: '{"access_key":"SCWQJM67R45MYNRYZXZQ","application_id":"dddb6bd8-baba-404c-ae56-7a8b198374cb","created_at":"2025-01-22T15:32:36.122187Z","creation_ip":"51.159.73.9","default_project_id":"c06db458-5c7d-4372-a954-d0dadbf8a092","deletable":true,"description":"","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:32:36.122187Z"}' - headers: - Content-Length: - - "414" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:36 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: - - 7dd10536-b9c2-4b8f-ace7-cd6520968543 - status: 200 OK - code: 200 - duration: 189.460833ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 292 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_policy_condition","description":"a description","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","rules":[{"permission_set_names":["AllProductsFullAccess"],"condition":"1 == 1","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf"}],"tags":[],"no_principal":true}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:55.731082Z","deletable":true,"description":"a description","editable":true,"id":"d8a30966-9618-42f4-ba73-f6aec057f27c","managed":false,"name":"tf_tests_policy_condition","nb_permission_sets":0,"nb_rules":0,"nb_scopes":0,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:55.731082Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 3603986f-a58f-48f9-b538-1ceca5069b96 - status: 200 OK - code: 200 - duration: 154.496417ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:55.731082Z","deletable":true,"description":"a description","editable":true,"id":"d8a30966-9618-42f4-ba73-f6aec057f27c","managed":false,"name":"tf_tests_policy_condition","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:55.731082Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 87c1c011-b13d-402a-aa5d-0c1550859119 - status: 200 OK - code: 200 - duration: 54.404458ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 245 - uncompressed: false - body: '{"rules":[{"condition":"1 == 1","id":"e0641d3a-4412-42d2-9e89-739f984624e5","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "245" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 98c1935a-7dcf-4990-ae17-db837ae061dc - status: 200 OK - code: 200 - duration: 56.682042ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:55.731082Z","deletable":true,"description":"a description","editable":true,"id":"d8a30966-9618-42f4-ba73-f6aec057f27c","managed":false,"name":"tf_tests_policy_condition","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:55.731082Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:56 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: - - 7948ff52-3db8-40a0-bc9e-38327daca48a - status: 200 OK - code: 200 - duration: 103.238916ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:55.731082Z","deletable":true,"description":"a description","editable":true,"id":"d8a30966-9618-42f4-ba73-f6aec057f27c","managed":false,"name":"tf_tests_policy_condition","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:55.731082Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 544af7ea-9ba1-4a09-8793-8592d691f561 - status: 200 OK - code: 200 - duration: 49.737041ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 245 - uncompressed: false - body: '{"rules":[{"condition":"1 == 1","id":"e0641d3a-4412-42d2-9e89-739f984624e5","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "245" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - f4b089cf-3b1e-4efd-b969-03d8e5b38ada - status: 200 OK - code: 200 - duration: 68.87275ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:55.731082Z","deletable":true,"description":"a description","editable":true,"id":"d8a30966-9618-42f4-ba73-f6aec057f27c","managed":false,"name":"tf_tests_policy_condition","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:55.731082Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:58 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: - - e71d4daa-2d86-4056-9ef1-f440616e9468 - status: 200 OK - code: 200 - duration: 54.163167ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 245 - uncompressed: false - body: '{"rules":[{"condition":"1 == 1","id":"e0641d3a-4412-42d2-9e89-739f984624e5","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "245" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:58 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: - - 38113fcd-4b54-4add-b51a-83f950ea7fd4 - status: 200 OK - code: 200 - duration: 73.505417ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 221 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"policy_id":"d8a30966-9618-42f4-ba73-f6aec057f27c","rules":[{"permission_set_names":["AllProductsFullAccess"],"condition":"request.user_agent == ''terraform-test''","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 258 - uncompressed: false - body: '{"rules":[{"condition":"request.user_agent == ''terraform-test''","id":"785fd26b-31cb-4d5b-89d0-cf42d1b55008","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}]}' - headers: - Content-Length: - - "258" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - f5d9bab8-76dd-443a-89a4-f22bd84d05e0 - status: 200 OK - code: 200 - duration: 106.891833ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:55.731082Z","deletable":true,"description":"a description","editable":true,"id":"d8a30966-9618-42f4-ba73-f6aec057f27c","managed":false,"name":"tf_tests_policy_condition","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:59.896551Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:00 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: - - 35308636-3349-48db-bb93-9c8ca0c8365c - status: 200 OK - code: 200 - duration: 59.181708ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 275 - uncompressed: false - body: '{"rules":[{"condition":"request.user_agent == ''terraform-test''","id":"785fd26b-31cb-4d5b-89d0-cf42d1b55008","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}],"total_count":1}' - headers: - Content-Length: - - "275" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:00 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: - - 65055f4b-843d-4d74-90fe-4426f1385536 - status: 200 OK - code: 200 - duration: 99.922083ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:55.731082Z","deletable":true,"description":"a description","editable":true,"id":"d8a30966-9618-42f4-ba73-f6aec057f27c","managed":false,"name":"tf_tests_policy_condition","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:59.896551Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:00 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: - - fd3cea6a-14c7-4297-a53d-22c1d6418ad0 - status: 200 OK - code: 200 - duration: 141.09975ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:55.731082Z","deletable":true,"description":"a description","editable":true,"id":"d8a30966-9618-42f4-ba73-f6aec057f27c","managed":false,"name":"tf_tests_policy_condition","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:59.896551Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:01 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: - - 9fc510cf-7730-4bec-bca6-64f7a1cce060 - status: 200 OK - code: 200 - duration: 45.289208ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 275 - uncompressed: false - body: '{"rules":[{"condition":"request.user_agent == ''terraform-test''","id":"785fd26b-31cb-4d5b-89d0-cf42d1b55008","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}],"total_count":1}' - headers: - Content-Length: - - "275" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:01 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: - - f34e8ae6-e305-4633-9f33-af37920dba2e - status: 200 OK - code: 200 - duration: 53.650541ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:55.731082Z","deletable":true,"description":"a description","editable":true,"id":"d8a30966-9618-42f4-ba73-f6aec057f27c","managed":false,"name":"tf_tests_policy_condition","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:59.896551Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:02 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: - - 3b2446e7-05f1-45db-87b4-91b0c1d7687a - status: 200 OK - code: 200 - duration: 63.665917ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 275 - uncompressed: false - body: '{"rules":[{"condition":"request.user_agent == ''terraform-test''","id":"785fd26b-31cb-4d5b-89d0-cf42d1b55008","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}],"total_count":1}' - headers: - Content-Length: - - "275" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:03 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: - - 5e2ff54a-29ff-45af-bc74-3d43d12379c8 - status: 200 OK - code: 200 - duration: 52.256458ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 183 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"policy_id":"d8a30966-9618-42f4-ba73-f6aec057f27c","rules":[{"permission_set_names":["AllProductsFullAccess"],"condition":"","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 220 - uncompressed: false - body: '{"rules":[{"condition":"","id":"64fdf188-7301-492c-b83f-851ea320d9df","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}]}' - headers: - Content-Length: - - "220" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:04 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: - - f8ae7e35-71d2-407e-9931-a014fc44e1ee - status: 200 OK - code: 200 - duration: 88.262125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:55.731082Z","deletable":true,"description":"a description","editable":true,"id":"d8a30966-9618-42f4-ba73-f6aec057f27c","managed":false,"name":"tf_tests_policy_condition","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:04.371637Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:04 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: - - 12e9a971-6ce2-4f94-983f-1f936549c737 - status: 200 OK - code: 200 - duration: 53.493833ms - - id: 22 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 237 - uncompressed: false - body: '{"rules":[{"condition":"","id":"64fdf188-7301-492c-b83f-851ea320d9df","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}],"total_count":1}' - headers: - Content-Length: - - "237" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:04 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: - - 94ccdb23-e212-499d-abf3-de05ec68146e - status: 200 OK - code: 200 - duration: 50.685834ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:55.731082Z","deletable":true,"description":"a description","editable":true,"id":"d8a30966-9618-42f4-ba73-f6aec057f27c","managed":false,"name":"tf_tests_policy_condition","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:04.371637Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:05 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: - - 3f4007db-3623-4ff9-acfa-38bfbc2cb561 - status: 200 OK - code: 200 - duration: 114.746584ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:55.731082Z","deletable":true,"description":"a description","editable":true,"id":"d8a30966-9618-42f4-ba73-f6aec057f27c","managed":false,"name":"tf_tests_policy_condition","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:33:04.371637Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:05 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: - - 4a68063f-7eca-4abd-8435-15bd1dac1a1e - status: 200 OK - code: 200 - duration: 51.071292ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 237 - uncompressed: false - body: '{"rules":[{"condition":"","id":"64fdf188-7301-492c-b83f-851ea320d9df","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}],"total_count":1}' - headers: - Content-Length: - - "237" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:06 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: - - 86b4c60d-0252-471f-8a3e-1eb6289eb9f0 - status: 200 OK - code: 200 - duration: 54.534541ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/d8a30966-9618-42f4-ba73-f6aec057f27c - 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: - - Wed, 22 Jan 2025 15:33: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: - - c0df5bb8-453c-4af1-9332-ae602cb3fcbf - status: 204 No Content - code: 204 - duration: 65.568291ms - - id: 27 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWQJM67R45MYNRYZXZQ - 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: - - Wed, 22 Jan 2025 15:33: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: - - e2bbfb24-8dc0-4ab7-bd24-4a1cf37a41b6 - status: 204 No Content - code: 204 - duration: 88.993541ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/f1086116-0fef-4007-98da-fb1ed4f071d4 - 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: - - Wed, 22 Jan 2025 15:33: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: - - ae299057-60d1-41f3-9ce2-328c15f35b5a - status: 204 No Content - code: 204 - duration: 100.710875ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/dddb6bd8-baba-404c-ae56-7a8b198374cb - 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: - - Wed, 22 Jan 2025 15:33: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: - - 97a5eb69-9173-445b-92a5-d2f9e46b2578 - status: 204 No Content - code: 204 - duration: 91.110333ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/c06db458-5c7d-4372-a954-d0dadbf8a092 - 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: - - Wed, 22 Jan 2025 15:33: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: - - 560cced0-3ba3-4094-92ef-6b8a778916fe - status: 204 No Content - code: 204 - duration: 1.400311208s - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/d8a30966-9618-42f4-ba73-f6aec057f27c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"policy","resource_id":"d8a30966-9618-42f4-ba73-f6aec057f27c","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33: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: - - 6c61a1da-913c-473d-ba2d-384ce4dcd14e - status: 404 Not Found - code: 404 - duration: 23.813959ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 130 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-project-1961640147741475612\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 287 + body: "{\"id\":\"4b59db45-6d02-4aad-93d1-552fb50e7ddf\", \"name\":\"test-acc-scaleway-project-1961640147741475612\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:27.215668Z\", \"updated_at\":\"2025-11-17T17:10:27.215668Z\", \"description\":\"\", \"qualification\":null}" + headers: + Content-Length: + - "287" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ecdb31a9-b4b2-457e-b85f-86c5f483d1d1 + status: 200 OK + code: 200 + duration: 490.749866ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 142 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-iam-app-5959307286748936800\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":null}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 345 + body: "{\"id\":\"c4f11cd5-e88c-49d0-a85a-0130c876dfd4\", \"name\":\"test-acc-scaleway-iam-app-5959307286748936800\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:27.730815Z\", \"updated_at\":\"2025-11-17T17:10:27.730815Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "345" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 85a5a9e2-313e-4c8b-a8a0-b51aad0b7f7f + status: 200 OK + code: 200 + duration: 217.65278ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 323 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-iam-policy-6661779725811493651\",\"description\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"rules\":[{\"permission_set_names\":[\"IAMManager\"],\"condition\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}],\"tags\":null,\"application_id\":\"c4f11cd5-e88c-49d0-a85a-0130c876dfd4\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"id\":\"b8bcdbc7-45e1-4ecd-9474-bff0eaaf6496\", \"name\":\"test-acc-scaleway-iam-policy-6661779725811493651\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:27.829340Z\", \"updated_at\":\"2025-11-17T17:10:27.829340Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":0, \"nb_scopes\":0, \"nb_permission_sets\":0, \"tags\":[], \"application_id\":\"c4f11cd5-e88c-49d0-a85a-0130c876dfd4\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a53eca77-60cc-49ef-98bd-02bf4401562b + status: 200 OK + code: 200 + duration: 126.903555ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 134 + host: api.scaleway.com + body: "{\"application_id\":\"c4f11cd5-e88c-49d0-a85a-0130c876dfd4\",\"default_project_id\":\"4b59db45-6d02-4aad-93d1-552fb50e7ddf\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 416 + body: "{\"access_key\":\"SCWYT0X3R18DPDNGFQD5\", \"secret_key\":\"11111111-1111-1111-1111-111111111111\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:28.120665Z\", \"updated_at\":\"2025-11-17T17:10:28.120665Z\", \"expires_at\":null, \"default_project_id\":\"4b59db45-6d02-4aad-93d1-552fb50e7ddf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"c4f11cd5-e88c-49d0-a85a-0130c876dfd4\"}" + headers: + Content-Length: + - "416" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d4a41a1c-55d4-44f2-af78-f4040d54b4ee + status: 200 OK + code: 200 + duration: 396.164109ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 292 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_policy_condition\",\"description\":\"a description\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"rules\":[{\"permission_set_names\":[\"AllProductsFullAccess\"],\"condition\":\"1 == 1\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}],\"tags\":[],\"no_principal\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"5209089d-8772-4b5a-a530-5c8ea8e998e0\", \"name\":\"tf_tests_policy_condition\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:55.311965Z\", \"updated_at\":\"2025-11-17T17:10:55.311965Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":0, \"nb_scopes\":0, \"nb_permission_sets\":0, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f936226a-fbbb-4e61-a705-0f5864594072 + status: 200 OK + code: 200 + duration: 177.629763ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"5209089d-8772-4b5a-a530-5c8ea8e998e0\", \"name\":\"tf_tests_policy_condition\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:55.311965Z\", \"updated_at\":\"2025-11-17T17:10:55.311965Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 78ad3d14-fe16-474f-90fd-06e37980414d + status: 200 OK + code: 200 + duration: 135.566592ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 5209089d-8772-4b5a-a530-5c8ea8e998e0 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 245 + body: "{\"rules\":[{\"id\":\"23d2eef1-b4ec-48a9-9ae7-16dc66945081\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"1 == 1\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "245" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6f5c55d4-1a4e-4d9a-9066-25814f7f59de + status: 200 OK + code: 200 + duration: 101.584274ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"5209089d-8772-4b5a-a530-5c8ea8e998e0\", \"name\":\"tf_tests_policy_condition\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:55.311965Z\", \"updated_at\":\"2025-11-17T17:10:55.311965Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 94e2dfd0-2cda-4283-a48c-05499c41c2c8 + status: 200 OK + code: 200 + duration: 56.050807ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"5209089d-8772-4b5a-a530-5c8ea8e998e0\", \"name\":\"tf_tests_policy_condition\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:55.311965Z\", \"updated_at\":\"2025-11-17T17:10:55.311965Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ed03997b-dba8-4126-adca-48711b4da3ec + status: 200 OK + code: 200 + duration: 88.831369ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 5209089d-8772-4b5a-a530-5c8ea8e998e0 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 245 + body: "{\"rules\":[{\"id\":\"23d2eef1-b4ec-48a9-9ae7-16dc66945081\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"1 == 1\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "245" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 62d74c10-0ed6-4e4f-9968-e759c3d56e00 + status: 200 OK + code: 200 + duration: 123.387572ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"5209089d-8772-4b5a-a530-5c8ea8e998e0\", \"name\":\"tf_tests_policy_condition\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:55.311965Z\", \"updated_at\":\"2025-11-17T17:10:55.311965Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7d93baef-958a-40f4-b188-807e77914d85 + status: 200 OK + code: 200 + duration: 191.088211ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 5209089d-8772-4b5a-a530-5c8ea8e998e0 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 245 + body: "{\"rules\":[{\"id\":\"23d2eef1-b4ec-48a9-9ae7-16dc66945081\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"1 == 1\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "245" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1c0cdb93-09c1-4d98-83ce-858973cb98f1 + status: 200 OK + code: 200 + duration: 90.336576ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 221 + host: api.scaleway.com + body: "{\"policy_id\":\"5209089d-8772-4b5a-a530-5c8ea8e998e0\",\"rules\":[{\"permission_set_names\":[\"AllProductsFullAccess\"],\"condition\":\"request.user_agent == 'terraform-test'\",\"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 258 + body: "{\"rules\":[{\"id\":\"14b0f1b8-c7b0-4874-a559-f2a5147e038a\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"request.user_agent == 'terraform-test'\", \"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}]}" + headers: + Content-Length: + - "258" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f1e2a6a4-95c7-4f36-9bcb-145dcf51ae9f + status: 200 OK + code: 200 + duration: 145.552674ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"5209089d-8772-4b5a-a530-5c8ea8e998e0\", \"name\":\"tf_tests_policy_condition\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:55.311965Z\", \"updated_at\":\"2025-11-17T17:10:57.664051Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c179360d-cb90-4763-b301-16fe8063b894 + status: 200 OK + code: 200 + duration: 86.660445ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 5209089d-8772-4b5a-a530-5c8ea8e998e0 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 275 + body: "{\"rules\":[{\"id\":\"14b0f1b8-c7b0-4874-a559-f2a5147e038a\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"request.user_agent == 'terraform-test'\", \"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}], \"total_count\":1}" + headers: + Content-Length: + - "275" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 20532e4c-d8b4-4930-adc2-fe73daf0ae4e + status: 200 OK + code: 200 + duration: 76.071752ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"5209089d-8772-4b5a-a530-5c8ea8e998e0\", \"name\":\"tf_tests_policy_condition\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:55.311965Z\", \"updated_at\":\"2025-11-17T17:10:57.664051Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8753497f-143b-4ef4-90fe-cc8ffe5b475e + status: 200 OK + code: 200 + duration: 45.564879ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"5209089d-8772-4b5a-a530-5c8ea8e998e0\", \"name\":\"tf_tests_policy_condition\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:55.311965Z\", \"updated_at\":\"2025-11-17T17:10:57.664051Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1e105664-0bfc-41cd-a789-ff3d56268e93 + status: 200 OK + code: 200 + duration: 79.638677ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 5209089d-8772-4b5a-a530-5c8ea8e998e0 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 275 + body: "{\"rules\":[{\"id\":\"14b0f1b8-c7b0-4874-a559-f2a5147e038a\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"request.user_agent == 'terraform-test'\", \"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}], \"total_count\":1}" + headers: + Content-Length: + - "275" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2d449dbd-0511-4361-a8ae-bf7d20fbdae1 + status: 200 OK + code: 200 + duration: 85.86932ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"5209089d-8772-4b5a-a530-5c8ea8e998e0\", \"name\":\"tf_tests_policy_condition\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:55.311965Z\", \"updated_at\":\"2025-11-17T17:10:57.664051Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b4ecc08c-e26c-4575-a01e-ff9620c0f5b1 + status: 200 OK + code: 200 + duration: 45.20723ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 5209089d-8772-4b5a-a530-5c8ea8e998e0 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 275 + body: "{\"rules\":[{\"id\":\"14b0f1b8-c7b0-4874-a559-f2a5147e038a\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"request.user_agent == 'terraform-test'\", \"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}], \"total_count\":1}" + headers: + Content-Length: + - "275" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 81e355ae-0c25-4c77-85ec-ffce01f2c332 + status: 200 OK + code: 200 + duration: 87.091856ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 183 + host: api.scaleway.com + body: "{\"policy_id\":\"5209089d-8772-4b5a-a530-5c8ea8e998e0\",\"rules\":[{\"permission_set_names\":[\"AllProductsFullAccess\"],\"condition\":\"\",\"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 220 + body: "{\"rules\":[{\"id\":\"b0d1c519-6250-4d50-8a1f-c17e017fdb52\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}]}" + headers: + Content-Length: + - "220" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 64b19144-761d-4583-827a-e1d33d434d57 + status: 200 OK + code: 200 + duration: 110.779326ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"5209089d-8772-4b5a-a530-5c8ea8e998e0\", \"name\":\"tf_tests_policy_condition\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:55.311965Z\", \"updated_at\":\"2025-11-17T17:10:59.133472Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2f982ded-19bd-4d1b-9a31-98be115927aa + status: 200 OK + code: 200 + duration: 78.509492ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 5209089d-8772-4b5a-a530-5c8ea8e998e0 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 237 + body: "{\"rules\":[{\"id\":\"b0d1c519-6250-4d50-8a1f-c17e017fdb52\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}], \"total_count\":1}" + headers: + Content-Length: + - "237" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - cd33774e-c746-4305-a0e3-f268a9e25a93 + status: 200 OK + code: 200 + duration: 83.102416ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"5209089d-8772-4b5a-a530-5c8ea8e998e0\", \"name\":\"tf_tests_policy_condition\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:55.311965Z\", \"updated_at\":\"2025-11-17T17:10:59.133472Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9b568e79-d656-4801-bea5-257d4b479f5d + status: 200 OK + code: 200 + duration: 81.396103ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"5209089d-8772-4b5a-a530-5c8ea8e998e0\", \"name\":\"tf_tests_policy_condition\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:55.311965Z\", \"updated_at\":\"2025-11-17T17:10:59.133472Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 76fbad57-d856-4f4c-af03-2be6bd1ecd0b + status: 200 OK + code: 200 + duration: 76.232373ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 5209089d-8772-4b5a-a530-5c8ea8e998e0 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 237 + body: "{\"rules\":[{\"id\":\"b0d1c519-6250-4d50-8a1f-c17e017fdb52\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}], \"total_count\":1}" + headers: + Content-Length: + - "237" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c5d452c7-69e1-4615-b07e-1d2b39b3277a + status: 200 OK + code: 200 + duration: 54.066634ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:11:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 10b05bd3-53b4-4c61-9a83-95653bbc1593 + status: 204 No Content + code: 204 + duration: 97.668506ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:11:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1885494f-24b7-41ba-9c6d-9bbd41d028d2 + status: 204 No Content + code: 204 + duration: 62.248075ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/b8bcdbc7-45e1-4ecd-9474-bff0eaaf6496 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:11:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 13fa14cf-cc67-4547-9801-00c298842c00 + status: 204 No Content + code: 204 + duration: 219.190149ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/c4f11cd5-e88c-49d0-a85a-0130c876dfd4 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:11:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 08fc9516-67f7-4afb-97e0-693d67dc252a + status: 204 No Content + code: 204 + duration: 52.332384ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/4b59db45-6d02-4aad-93d1-552fb50e7ddf + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:11:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 012597ed-48a9-44db-aa3f-c329ad5972e0 + status: 204 No Content + code: 204 + duration: 1.300865765s +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/5209089d-8772-4b5a-a530-5c8ea8e998e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"policy\",\"resource_id\":\"5209089d-8772-4b5a-a530-5c8ea8e998e0\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:11:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a1ce3302-8346-4092-9584-471b18e501a1 + status: 404 Not Found + code: 404 + duration: 35.585769ms diff --git a/internal/services/iam/testdata/policy-no-update.cassette.yaml b/internal/services/iam/testdata/policy-no-update.cassette.yaml index 943911542..5b9489375 100644 --- a/internal/services/iam/testdata/policy-no-update.cassette.yaml +++ b/internal/services/iam/testdata/policy-no-update.cassette.yaml @@ -1,1032 +1,692 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 130 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-project-7447533616164555511","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 265 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:31.573444Z","description":"","id":"17037f95-bf71-45e7-a2c2-6a4195c48d74","name":"test-acc-scaleway-project-7447533616164555511","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T15:32:31.573444Z"}' - headers: - Content-Length: - - "265" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 88a0b18d-6748-4110-83e9-2fecf8219b77 - status: 200 OK - code: 200 - duration: 371.345167ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 140 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-iam-app-76403903425566285","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":null}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 343 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:31.915520Z","deletable":true,"description":"","editable":true,"id":"96e1d0ec-cbf2-4b20-af72-723f97eeade9","managed":false,"name":"test-acc-scaleway-iam-app-76403903425566285","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:31.915520Z"}' - headers: - Content-Length: - - "343" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 647fa24b-0b3b-4fae-afea-f76ae20067b6 - status: 200 OK - code: 200 - duration: 112.823334ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 323 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-iam-policy-3135629549510723307","description":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","rules":[{"permission_set_names":["IAMManager"],"condition":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf"}],"tags":null,"application_id":"96e1d0ec-cbf2-4b20-af72-723f97eeade9"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - body: '{"application_id":"96e1d0ec-cbf2-4b20-af72-723f97eeade9","created_at":"2025-01-22T15:32:32.034241Z","deletable":true,"description":"","editable":true,"id":"da1297c2-aa53-4d54-bbe6-aa5d5037122e","managed":false,"name":"test-acc-scaleway-iam-policy-3135629549510723307","nb_permission_sets":0,"nb_rules":0,"nb_scopes":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:32.034241Z"}' - headers: - Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:32 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: - - b63c9104-7ca3-40de-8395-4065191fa89b - status: 200 OK - code: 200 - duration: 154.01575ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 134 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"96e1d0ec-cbf2-4b20-af72-723f97eeade9","default_project_id":"17037f95-bf71-45e7-a2c2-6a4195c48d74","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 414 - uncompressed: false - body: '{"access_key":"SCWTTZ3V5TB38VD45JQC","application_id":"96e1d0ec-cbf2-4b20-af72-723f97eeade9","created_at":"2025-01-22T15:32:32.275896Z","creation_ip":"51.159.73.9","default_project_id":"17037f95-bf71-45e7-a2c2-6a4195c48d74","deletable":true,"description":"","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:32:32.275896Z"}' - headers: - Content-Length: - - "414" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:32 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: - - 3253275a-7f63-4279-a20c-c1f83bed5300 - status: 200 OK - code: 200 - duration: 206.414667ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 285 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_policy_noupdate","description":"a description","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","rules":[{"permission_set_names":["AllProductsFullAccess"],"condition":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf"}],"tags":[],"no_principal":true}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 394 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.777855Z","deletable":true,"description":"a description","editable":true,"id":"ae0cf43d-4d77-48af-b54d-33af139ff281","managed":false,"name":"tf_tests_policy_noupdate","nb_permission_sets":0,"nb_rules":0,"nb_scopes":0,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.777855Z"}' - headers: - Content-Length: - - "394" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - e903fa6c-5eea-46ac-8819-6ee1d50e063c - status: 200 OK - code: 200 - duration: 131.963584ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/ae0cf43d-4d77-48af-b54d-33af139ff281 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 394 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.777855Z","deletable":true,"description":"a description","editable":true,"id":"ae0cf43d-4d77-48af-b54d-33af139ff281","managed":false,"name":"tf_tests_policy_noupdate","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.777855Z"}' - headers: - Content-Length: - - "394" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 3f4e9ff5-4852-45a6-8f1b-0bb986b522a0 - status: 200 OK - code: 200 - duration: 57.416ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=ae0cf43d-4d77-48af-b54d-33af139ff281 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"10cce82f-0921-41fa-b7f1-459bed6c462f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 3f47eb21-1e36-4151-a8ff-14be84c20bb6 - status: 200 OK - code: 200 - duration: 68.84325ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/ae0cf43d-4d77-48af-b54d-33af139ff281 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 394 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.777855Z","deletable":true,"description":"a description","editable":true,"id":"ae0cf43d-4d77-48af-b54d-33af139ff281","managed":false,"name":"tf_tests_policy_noupdate","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.777855Z"}' - headers: - Content-Length: - - "394" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 7ed8fd5b-8910-4378-ba49-7a7e68440d0d - status: 200 OK - code: 200 - duration: 85.9385ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/ae0cf43d-4d77-48af-b54d-33af139ff281 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 394 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.777855Z","deletable":true,"description":"a description","editable":true,"id":"ae0cf43d-4d77-48af-b54d-33af139ff281","managed":false,"name":"tf_tests_policy_noupdate","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.777855Z"}' - headers: - Content-Length: - - "394" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - b733c794-6d9d-4d25-bfa7-33c56ebe632c - status: 200 OK - code: 200 - duration: 58.619375ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=ae0cf43d-4d77-48af-b54d-33af139ff281 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"10cce82f-0921-41fa-b7f1-459bed6c462f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 653806a5-72c8-4c1a-8a36-ee8beae0138b - status: 200 OK - code: 200 - duration: 61.1455ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/ae0cf43d-4d77-48af-b54d-33af139ff281 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 394 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.777855Z","deletable":true,"description":"a description","editable":true,"id":"ae0cf43d-4d77-48af-b54d-33af139ff281","managed":false,"name":"tf_tests_policy_noupdate","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.777855Z"}' - headers: - Content-Length: - - "394" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:43 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: - - f31ed843-dbf1-465e-9027-8868d8c53f98 - status: 200 OK - code: 200 - duration: 572.258334ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=ae0cf43d-4d77-48af-b54d-33af139ff281 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"10cce82f-0921-41fa-b7f1-459bed6c462f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:43 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: - - 84002c10-5088-46c9-a847-f38df87deadd - status: 200 OK - code: 200 - duration: 54.095166ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/ae0cf43d-4d77-48af-b54d-33af139ff281 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 394 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.777855Z","deletable":true,"description":"a description","editable":true,"id":"ae0cf43d-4d77-48af-b54d-33af139ff281","managed":false,"name":"tf_tests_policy_noupdate","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.777855Z"}' - headers: - Content-Length: - - "394" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:44 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: - - e4e225c2-faf3-4636-8f12-9f5250bf9764 - status: 200 OK - code: 200 - duration: 104.511458ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/ae0cf43d-4d77-48af-b54d-33af139ff281 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 394 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.777855Z","deletable":true,"description":"a description","editable":true,"id":"ae0cf43d-4d77-48af-b54d-33af139ff281","managed":false,"name":"tf_tests_policy_noupdate","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:39.777855Z"}' - headers: - Content-Length: - - "394" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - 12dcbede-899c-4b2c-9bcd-c27ea8e842c8 - status: 200 OK - code: 200 - duration: 52.263042ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=ae0cf43d-4d77-48af-b54d-33af139ff281 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 239 - uncompressed: false - body: '{"rules":[{"condition":"","id":"10cce82f-0921-41fa-b7f1-459bed6c462f","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects"}],"total_count":1}' - headers: - Content-Length: - - "239" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - 400846f5-4031-486a-b9f7-2ba98be1af98 - status: 200 OK - code: 200 - duration: 56.525541ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/ae0cf43d-4d77-48af-b54d-33af139ff281 - 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: - - Wed, 22 Jan 2025 15:32: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: - - c76897e9-c31d-4fe1-a717-7954196262cd - status: 204 No Content - code: 204 - duration: 72.141583ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWTTZ3V5TB38VD45JQC - 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: - - Wed, 22 Jan 2025 15:32: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: - - 57eb2b3d-c416-4dab-8c9f-46031ef50858 - status: 204 No Content - code: 204 - duration: 96.855458ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/da1297c2-aa53-4d54-bbe6-aa5d5037122e - 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: - - Wed, 22 Jan 2025 15:32: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: - - 615fa9d6-2187-4930-8f5a-ef1bb919cd70 - status: 204 No Content - code: 204 - duration: 111.40175ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/96e1d0ec-cbf2-4b20-af72-723f97eeade9 - 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: - - Wed, 22 Jan 2025 15:32: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: - - 77109612-56db-4b5a-8525-6824c9c018f6 - status: 204 No Content - code: 204 - duration: 84.549417ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/17037f95-bf71-45e7-a2c2-6a4195c48d74 - 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: - - Wed, 22 Jan 2025 15:32:48 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: - - 86304234-092c-4c51-9885-0536ad3d572e - status: 204 No Content - code: 204 - duration: 1.418276917s - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/ae0cf43d-4d77-48af-b54d-33af139ff281 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"policy","resource_id":"ae0cf43d-4d77-48af-b54d-33af139ff281","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - 28a01c9f-6295-494c-b009-9bba377fadf7 - status: 404 Not Found - code: 404 - duration: 27.2345ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 130 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-project-3022704095432981312\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 287 + body: "{\"id\":\"0732f4ac-4d0e-4b74-ba68-257e4083d5a0\", \"name\":\"test-acc-scaleway-project-3022704095432981312\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:22.339059Z\", \"updated_at\":\"2025-11-17T17:10:22.339059Z\", \"description\":\"\", \"qualification\":null}" + headers: + Content-Length: + - "287" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b2efad5e-9408-4b12-9e88-564950a39e23 + status: 200 OK + code: 200 + duration: 495.602339ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 142 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-iam-app-3528547907343273018\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":null}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 345 + body: "{\"id\":\"14975fa6-e432-45d7-8408-fb7598c71c91\", \"name\":\"test-acc-scaleway-iam-app-3528547907343273018\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:22.810147Z\", \"updated_at\":\"2025-11-17T17:10:22.810147Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "345" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d7678792-7f86-41f7-ae7f-d8af6cd2b741 + status: 200 OK + code: 200 + duration: 240.034878ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 323 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-iam-policy-2052268061830740688\",\"description\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"rules\":[{\"permission_set_names\":[\"IAMManager\"],\"condition\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}],\"tags\":null,\"application_id\":\"14975fa6-e432-45d7-8408-fb7598c71c91\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"id\":\"132326a0-087f-46ce-8393-e35144eaea35\", \"name\":\"test-acc-scaleway-iam-policy-2052268061830740688\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:22.953355Z\", \"updated_at\":\"2025-11-17T17:10:22.953355Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":0, \"nb_scopes\":0, \"nb_permission_sets\":0, \"tags\":[], \"application_id\":\"14975fa6-e432-45d7-8408-fb7598c71c91\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 669f201a-9c0e-44a6-9735-8957a4e5ad5b + status: 200 OK + code: 200 + duration: 242.254949ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 134 + host: api.scaleway.com + body: "{\"application_id\":\"14975fa6-e432-45d7-8408-fb7598c71c91\",\"default_project_id\":\"0732f4ac-4d0e-4b74-ba68-257e4083d5a0\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 416 + body: "{\"access_key\":\"SCW1GHVNSGM9N4X5K6BV\", \"secret_key\":\"11111111-1111-1111-1111-111111111111\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:23.274030Z\", \"updated_at\":\"2025-11-17T17:10:23.274030Z\", \"expires_at\":null, \"default_project_id\":\"0732f4ac-4d0e-4b74-ba68-257e4083d5a0\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"14975fa6-e432-45d7-8408-fb7598c71c91\"}" + headers: + Content-Length: + - "416" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5f779497-6d31-4911-8e61-f1e70af3fc7b + status: 200 OK + code: 200 + duration: 252.394634ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 285 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_policy_noupdate\",\"description\":\"a description\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"rules\":[{\"permission_set_names\":[\"AllProductsFullAccess\"],\"condition\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}],\"tags\":[],\"no_principal\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 394 + body: "{\"id\":\"01432504-60cc-4515-85c9-7f7c57878df0\", \"name\":\"tf_tests_policy_noupdate\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:41.057818Z\", \"updated_at\":\"2025-11-17T17:10:41.057818Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":0, \"nb_scopes\":0, \"nb_permission_sets\":0, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "394" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c0991a28-5c2b-4326-befd-38746ed46de9 + status: 200 OK + code: 200 + duration: 180.511525ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/01432504-60cc-4515-85c9-7f7c57878df0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 394 + body: "{\"id\":\"01432504-60cc-4515-85c9-7f7c57878df0\", \"name\":\"tf_tests_policy_noupdate\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:41.057818Z\", \"updated_at\":\"2025-11-17T17:10:41.057818Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "394" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1362a36b-366e-4550-8271-68a5b2f7ceaf + status: 200 OK + code: 200 + duration: 96.601035ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 01432504-60cc-4515-85c9-7f7c57878df0 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=01432504-60cc-4515-85c9-7f7c57878df0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"f2beeb64-e33e-4e3f-9a23-ad577a709657\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e5249262-779e-41aa-b7da-ae40610a7212 + status: 200 OK + code: 200 + duration: 76.450777ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/01432504-60cc-4515-85c9-7f7c57878df0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 394 + body: "{\"id\":\"01432504-60cc-4515-85c9-7f7c57878df0\", \"name\":\"tf_tests_policy_noupdate\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:41.057818Z\", \"updated_at\":\"2025-11-17T17:10:41.057818Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "394" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8aa277d0-fbd6-4874-8802-fa97a67689ca + status: 200 OK + code: 200 + duration: 190.87841ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/01432504-60cc-4515-85c9-7f7c57878df0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 394 + body: "{\"id\":\"01432504-60cc-4515-85c9-7f7c57878df0\", \"name\":\"tf_tests_policy_noupdate\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:41.057818Z\", \"updated_at\":\"2025-11-17T17:10:41.057818Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "394" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 91dfbf78-8712-4398-8061-fa3faf57094f + status: 200 OK + code: 200 + duration: 82.583124ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 01432504-60cc-4515-85c9-7f7c57878df0 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=01432504-60cc-4515-85c9-7f7c57878df0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"f2beeb64-e33e-4e3f-9a23-ad577a709657\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d9b0735a-8609-422a-98e7-95811c00ea28 + status: 200 OK + code: 200 + duration: 83.833833ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/01432504-60cc-4515-85c9-7f7c57878df0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 394 + body: "{\"id\":\"01432504-60cc-4515-85c9-7f7c57878df0\", \"name\":\"tf_tests_policy_noupdate\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:41.057818Z\", \"updated_at\":\"2025-11-17T17:10:41.057818Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "394" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e683d68b-a4d9-41f8-a953-c584c96229db + status: 200 OK + code: 200 + duration: 83.905456ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 01432504-60cc-4515-85c9-7f7c57878df0 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=01432504-60cc-4515-85c9-7f7c57878df0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"f2beeb64-e33e-4e3f-9a23-ad577a709657\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6c93617a-fa91-4f6d-acec-275cf72475af + status: 200 OK + code: 200 + duration: 62.946518ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/01432504-60cc-4515-85c9-7f7c57878df0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 394 + body: "{\"id\":\"01432504-60cc-4515-85c9-7f7c57878df0\", \"name\":\"tf_tests_policy_noupdate\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:41.057818Z\", \"updated_at\":\"2025-11-17T17:10:41.057818Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "394" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - cc598dc9-0dbd-4311-8074-24895d68dace + status: 200 OK + code: 200 + duration: 55.91983ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/01432504-60cc-4515-85c9-7f7c57878df0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 394 + body: "{\"id\":\"01432504-60cc-4515-85c9-7f7c57878df0\", \"name\":\"tf_tests_policy_noupdate\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:41.057818Z\", \"updated_at\":\"2025-11-17T17:10:41.057818Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "394" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 01002576-ed88-41c7-80b0-fadb60b1c829 + status: 200 OK + code: 200 + duration: 89.647138ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 01432504-60cc-4515-85c9-7f7c57878df0 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=01432504-60cc-4515-85c9-7f7c57878df0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 239 + body: "{\"rules\":[{\"id\":\"f2beeb64-e33e-4e3f-9a23-ad577a709657\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}], \"total_count\":1}" + headers: + Content-Length: + - "239" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - da98756f-864b-4843-b695-44b72556a806 + status: 200 OK + code: 200 + duration: 90.058253ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/01432504-60cc-4515-85c9-7f7c57878df0 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7b5c523c-c802-4af0-b966-115354308a30 + status: 204 No Content + code: 204 + duration: 93.51065ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 53903d71-f52e-4fdb-b22a-9c207899f637 + status: 204 No Content + code: 204 + duration: 160.368676ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/132326a0-087f-46ce-8393-e35144eaea35 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 89746f2b-bf29-4f3b-b999-a07106162a73 + status: 204 No Content + code: 204 + duration: 234.623374ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/14975fa6-e432-45d7-8408-fb7598c71c91 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 46511cc5-d5a4-4050-b887-8bcd05e5e450 + status: 204 No Content + code: 204 + duration: 56.78111ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/0732f4ac-4d0e-4b74-ba68-257e4083d5a0 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ad3ff1ab-4322-4ffb-82c5-141e9efae461 + status: 204 No Content + code: 204 + duration: 1.405657148s +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/01432504-60cc-4515-85c9-7f7c57878df0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"policy\",\"resource_id\":\"01432504-60cc-4515-85c9-7f7c57878df0\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0d87876d-c179-4851-91db-efb1791b255a + status: 404 Not Found + code: 404 + duration: 42.737402ms diff --git a/internal/services/iam/testdata/policy-project-id.cassette.yaml b/internal/services/iam/testdata/policy-project-id.cassette.yaml index 623a681ee..3b1326a1d 100644 --- a/internal/services/iam/testdata/policy-project-id.cassette.yaml +++ b/internal/services/iam/testdata/policy-project-id.cassette.yaml @@ -1,1032 +1,692 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 130 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-project-6873112980395875120","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 265 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:34.601480Z","description":"","id":"dffea908-8f61-48d3-9f50-ad36c9964ba3","name":"test-acc-scaleway-project-6873112980395875120","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T15:32:34.601480Z"}' - headers: - Content-Length: - - "265" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:34 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: - - 9c7326a8-6ef7-41fe-9262-f42d930d4217 - status: 200 OK - code: 200 - duration: 309.805958ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 142 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-iam-app-1583854493031846011","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"","tags":null}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 345 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:34.924327Z","deletable":true,"description":"","editable":true,"id":"6037931c-13cf-43b4-90a4-856f5fe0fb2d","managed":false,"name":"test-acc-scaleway-iam-app-1583854493031846011","nb_api_keys":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:34.924327Z"}' - headers: - Content-Length: - - "345" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:34 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: - - 6115b570-0ead-42cf-abe3-f0093359a1f4 - status: 200 OK - code: 200 - duration: 144.553ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 323 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-scaleway-iam-policy-7423393238946522405","description":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","rules":[{"permission_set_names":["IAMManager"],"condition":"","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf"}],"tags":null,"application_id":"6037931c-13cf-43b4-90a4-856f5fe0fb2d"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - body: '{"application_id":"6037931c-13cf-43b4-90a4-856f5fe0fb2d","created_at":"2025-01-22T15:32:35.039743Z","deletable":true,"description":"","editable":true,"id":"2b4522ab-774b-4c0b-9126-f1c97bd37ed4","managed":false,"name":"test-acc-scaleway-iam-policy-7423393238946522405","nb_permission_sets":0,"nb_rules":0,"nb_scopes":0,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:35.039743Z"}' - headers: - Content-Length: - - "441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 399ec4a6-c8a3-4e43-ba59-092d037166f7 - status: 200 OK - code: 200 - duration: 147.333375ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 134 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"application_id":"6037931c-13cf-43b4-90a4-856f5fe0fb2d","default_project_id":"dffea908-8f61-48d3-9f50-ad36c9964ba3","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 414 - uncompressed: false - body: '{"access_key":"SCWQ7GTFYGV18YE5412K","application_id":"6037931c-13cf-43b4-90a4-856f5fe0fb2d","created_at":"2025-01-22T15:32:35.289859Z","creation_ip":"51.159.73.9","default_project_id":"dffea908-8f61-48d3-9f50-ad36c9964ba3","deletable":true,"description":"","editable":true,"expires_at":null,"managed":false,"secret_key":"00000000-0000-0000-0000-000000000000","updated_at":"2025-01-22T15:32:35.289859Z"}' - headers: - Content-Length: - - "414" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - b4bd02a1-38fd-4710-8bab-1d84355e4314 - status: 200 OK - code: 200 - duration: 216.554792ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 284 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_policy_projectid","description":"a description","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","rules":[{"permission_set_names":["AllProductsFullAccess"],"condition":"","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}],"tags":[],"no_principal":true}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:54.353441Z","deletable":true,"description":"a description","editable":true,"id":"9b7afe9f-4394-45c8-a431-d74054bd8b68","managed":false,"name":"tf_tests_policy_projectid","nb_permission_sets":0,"nb_rules":0,"nb_scopes":0,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:54.353441Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - 86bd35b2-5eed-4e0a-bccc-47b5cf8fcd2e - status: 200 OK - code: 200 - duration: 130.929583ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/9b7afe9f-4394-45c8-a431-d74054bd8b68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:54.353441Z","deletable":true,"description":"a description","editable":true,"id":"9b7afe9f-4394-45c8-a431-d74054bd8b68","managed":false,"name":"tf_tests_policy_projectid","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:54.353441Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - 5c5329f1-2362-419b-9351-fe062985c8d6 - status: 200 OK - code: 200 - duration: 70.755583ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=9b7afe9f-4394-45c8-a431-d74054bd8b68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 237 - uncompressed: false - body: '{"rules":[{"condition":"","id":"7dbf6c6c-07e8-49a6-95a9-548b31e0f276","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}],"total_count":1}' - headers: - Content-Length: - - "237" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - b825b08e-4a6c-4ecc-a0b9-54da42d653bf - status: 200 OK - code: 200 - duration: 62.745958ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/9b7afe9f-4394-45c8-a431-d74054bd8b68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:54.353441Z","deletable":true,"description":"a description","editable":true,"id":"9b7afe9f-4394-45c8-a431-d74054bd8b68","managed":false,"name":"tf_tests_policy_projectid","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:54.353441Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - f89290bb-dce1-4c38-a6d7-89b74f357da9 - status: 200 OK - code: 200 - duration: 107.592625ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/9b7afe9f-4394-45c8-a431-d74054bd8b68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:54.353441Z","deletable":true,"description":"a description","editable":true,"id":"9b7afe9f-4394-45c8-a431-d74054bd8b68","managed":false,"name":"tf_tests_policy_projectid","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:54.353441Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 73070776-c429-4580-b35f-2b18d3398ab5 - status: 200 OK - code: 200 - duration: 50.187167ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=9b7afe9f-4394-45c8-a431-d74054bd8b68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 237 - uncompressed: false - body: '{"rules":[{"condition":"","id":"7dbf6c6c-07e8-49a6-95a9-548b31e0f276","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}],"total_count":1}' - headers: - Content-Length: - - "237" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 579f920e-b499-495b-b422-93dd1aacf5cc - status: 200 OK - code: 200 - duration: 68.764667ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/9b7afe9f-4394-45c8-a431-d74054bd8b68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:54.353441Z","deletable":true,"description":"a description","editable":true,"id":"9b7afe9f-4394-45c8-a431-d74054bd8b68","managed":false,"name":"tf_tests_policy_projectid","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:54.353441Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 9c4ef973-151f-4516-9b58-0fecb15fe98c - status: 200 OK - code: 200 - duration: 88.917834ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=9b7afe9f-4394-45c8-a431-d74054bd8b68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 237 - uncompressed: false - body: '{"rules":[{"condition":"","id":"7dbf6c6c-07e8-49a6-95a9-548b31e0f276","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}],"total_count":1}' - headers: - Content-Length: - - "237" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 2fe56558-1e0d-4c6c-9b04-111991fb8dab - status: 200 OK - code: 200 - duration: 57.434166ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/9b7afe9f-4394-45c8-a431-d74054bd8b68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:54.353441Z","deletable":true,"description":"a description","editable":true,"id":"9b7afe9f-4394-45c8-a431-d74054bd8b68","managed":false,"name":"tf_tests_policy_projectid","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:54.353441Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:58 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: - - bab70915-b37b-43c7-8015-34ad0376c4db - status: 200 OK - code: 200 - duration: 104.355583ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/9b7afe9f-4394-45c8-a431-d74054bd8b68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 395 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:54.353441Z","deletable":true,"description":"a description","editable":true,"id":"9b7afe9f-4394-45c8-a431-d74054bd8b68","managed":false,"name":"tf_tests_policy_projectid","nb_permission_sets":1,"nb_rules":1,"nb_scopes":1,"no_principal":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"updated_at":"2025-01-22T15:32:54.353441Z"}' - headers: - Content-Length: - - "395" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - cbcbe317-fbad-4a75-aa36-61e0edf13fc5 - status: 200 OK - code: 200 - duration: 55.080459ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=9b7afe9f-4394-45c8-a431-d74054bd8b68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 237 - uncompressed: false - body: '{"rules":[{"condition":"","id":"7dbf6c6c-07e8-49a6-95a9-548b31e0f276","permission_set_names":["AllProductsFullAccess"],"permission_sets_scope_type":"projects","project_ids":["105bdce1-64c0-48ab-899d-868455867ecf"]}],"total_count":1}' - headers: - Content-Length: - - "237" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:59 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: - - de48b14a-b452-4c5f-b524-10e5ad136003 - status: 200 OK - code: 200 - duration: 56.347667ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/9b7afe9f-4394-45c8-a431-d74054bd8b68 - 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: - - Wed, 22 Jan 2025 15:33:01 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: - - 864d9c56-9e40-4b99-ac0f-e93d1770f446 - status: 204 No Content - code: 204 - duration: 85.14925ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWQ7GTFYGV18YE5412K - 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: - - Wed, 22 Jan 2025 15:33:01 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: - - 5da715d9-c8d0-47e2-92e5-cd7865219e38 - status: 204 No Content - code: 204 - duration: 105.718292ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/2b4522ab-774b-4c0b-9126-f1c97bd37ed4 - 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: - - Wed, 22 Jan 2025 15:33:01 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: - - 0a9d39cd-ce28-4319-b909-bf02cbcde669 - status: 204 No Content - code: 204 - duration: 104.727292ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/applications/6037931c-13cf-43b4-90a4-856f5fe0fb2d - 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: - - Wed, 22 Jan 2025 15:33:01 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: - - f5eab6b8-6826-4ca9-85c4-bbea4c594bac - status: 204 No Content - code: 204 - duration: 96.72825ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/dffea908-8f61-48d3-9f50-ad36c9964ba3 - 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: - - Wed, 22 Jan 2025 15:33:02 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: - - 8fe1303b-493b-4bee-9534-d6f3ec12fee1 - status: 204 No Content - code: 204 - duration: 1.340240167s - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/policies/9b7afe9f-4394-45c8-a431-d74054bd8b68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"policy","resource_id":"9b7afe9f-4394-45c8-a431-d74054bd8b68","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:33:02 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: - - 5f073c90-04f7-430c-bdb2-3eb84521657b - status: 404 Not Found - code: 404 - duration: 51.57625ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 130 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-project-2895481043915868296\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 287 + body: "{\"id\":\"46bf45c9-07b5-4526-b549-db20c4e0b0c3\", \"name\":\"test-acc-scaleway-project-2895481043915868296\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:26.109816Z\", \"updated_at\":\"2025-11-17T17:10:26.109816Z\", \"description\":\"\", \"qualification\":null}" + headers: + Content-Length: + - "287" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7d36a35b-6809-4495-9ce7-771c2241d31c + status: 200 OK + code: 200 + duration: 496.273762ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 142 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-iam-app-3068200774423597218\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\",\"tags\":null}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 345 + body: "{\"id\":\"fdbcb3f8-6822-437c-bb1b-04bd057800d8\", \"name\":\"test-acc-scaleway-iam-app-3068200774423597218\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:26.514226Z\", \"updated_at\":\"2025-11-17T17:10:26.514226Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_api_keys\":0, \"tags\":[]}" + headers: + Content-Length: + - "345" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f64ad5a9-2e0a-4a12-8b44-436a5ba4a4c1 + status: 200 OK + code: 200 + duration: 98.347746ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 323 + host: api.scaleway.com + body: "{\"name\":\"test-acc-scaleway-iam-policy-2846480840489452978\",\"description\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"rules\":[{\"permission_set_names\":[\"IAMManager\"],\"condition\":\"\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}],\"tags\":null,\"application_id\":\"fdbcb3f8-6822-437c-bb1b-04bd057800d8\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"id\":\"edfc8e58-884b-4a30-a482-394b19d39c52\", \"name\":\"test-acc-scaleway-iam-policy-2846480840489452978\", \"description\":\"\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:26.613468Z\", \"updated_at\":\"2025-11-17T17:10:26.613468Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":0, \"nb_scopes\":0, \"nb_permission_sets\":0, \"tags\":[], \"application_id\":\"fdbcb3f8-6822-437c-bb1b-04bd057800d8\"}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6f28b04d-6dc1-4d0b-ac84-d85cc3a1a5a4 + status: 200 OK + code: 200 + duration: 192.493463ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 134 + host: api.scaleway.com + body: "{\"application_id\":\"fdbcb3f8-6822-437c-bb1b-04bd057800d8\",\"default_project_id\":\"46bf45c9-07b5-4526-b549-db20c4e0b0c3\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 416 + body: "{\"access_key\":\"SCWBP9XAZEB70BAYBZ4D\", \"secret_key\":\"11111111-1111-1111-1111-111111111111\", \"description\":\"\", \"created_at\":\"2025-11-17T17:10:26.989788Z\", \"updated_at\":\"2025-11-17T17:10:26.989788Z\", \"expires_at\":null, \"default_project_id\":\"46bf45c9-07b5-4526-b549-db20c4e0b0c3\", \"editable\":true, \"deletable\":true, \"managed\":false, \"creation_ip\":\"51.159.46.153\", \"application_id\":\"fdbcb3f8-6822-437c-bb1b-04bd057800d8\"}" + headers: + Content-Length: + - "416" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8d3eb988-349e-4495-bba6-3bd3a43b1a79 + status: 200 OK + code: 200 + duration: 316.005921ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 284 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_policy_projectid\",\"description\":\"a description\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"rules\":[{\"permission_set_names\":[\"AllProductsFullAccess\"],\"condition\":\"\",\"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}],\"tags\":[],\"no_principal\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"768b277e-0b53-4b4d-b2da-3bb77b84627b\", \"name\":\"tf_tests_policy_projectid\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:30.450405Z\", \"updated_at\":\"2025-11-17T17:10:30.450405Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":0, \"nb_scopes\":0, \"nb_permission_sets\":0, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c5d6c13d-9013-4729-8d96-c785ee3ec95a + status: 200 OK + code: 200 + duration: 138.585776ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/768b277e-0b53-4b4d-b2da-3bb77b84627b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"768b277e-0b53-4b4d-b2da-3bb77b84627b\", \"name\":\"tf_tests_policy_projectid\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:30.450405Z\", \"updated_at\":\"2025-11-17T17:10:30.450405Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 746e7bf8-9829-41b1-b581-77303fb3b426 + status: 200 OK + code: 200 + duration: 142.914283ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 768b277e-0b53-4b4d-b2da-3bb77b84627b + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=768b277e-0b53-4b4d-b2da-3bb77b84627b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 237 + body: "{\"rules\":[{\"id\":\"fac69750-c760-4cc1-ba7a-d66bfe1190df\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}], \"total_count\":1}" + headers: + Content-Length: + - "237" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5d417794-be2d-4613-8796-e59657e1b213 + status: 200 OK + code: 200 + duration: 129.686471ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/768b277e-0b53-4b4d-b2da-3bb77b84627b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"768b277e-0b53-4b4d-b2da-3bb77b84627b\", \"name\":\"tf_tests_policy_projectid\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:30.450405Z\", \"updated_at\":\"2025-11-17T17:10:30.450405Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 4bccfcaa-57d5-4186-9787-76717ceaf6b4 + status: 200 OK + code: 200 + duration: 186.109676ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/768b277e-0b53-4b4d-b2da-3bb77b84627b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"768b277e-0b53-4b4d-b2da-3bb77b84627b\", \"name\":\"tf_tests_policy_projectid\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:30.450405Z\", \"updated_at\":\"2025-11-17T17:10:30.450405Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - de3dbcd7-1b94-4f8e-9856-2c6c47f94392 + status: 200 OK + code: 200 + duration: 76.528133ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 768b277e-0b53-4b4d-b2da-3bb77b84627b + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=768b277e-0b53-4b4d-b2da-3bb77b84627b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 237 + body: "{\"rules\":[{\"id\":\"fac69750-c760-4cc1-ba7a-d66bfe1190df\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}], \"total_count\":1}" + headers: + Content-Length: + - "237" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c5f13d98-28e7-451e-80dc-86803c096303 + status: 200 OK + code: 200 + duration: 123.287852ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/768b277e-0b53-4b4d-b2da-3bb77b84627b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"768b277e-0b53-4b4d-b2da-3bb77b84627b\", \"name\":\"tf_tests_policy_projectid\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:30.450405Z\", \"updated_at\":\"2025-11-17T17:10:30.450405Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0e4a4580-2bb3-4534-a554-a1308064b9df + status: 200 OK + code: 200 + duration: 66.63774ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 768b277e-0b53-4b4d-b2da-3bb77b84627b + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=768b277e-0b53-4b4d-b2da-3bb77b84627b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 237 + body: "{\"rules\":[{\"id\":\"fac69750-c760-4cc1-ba7a-d66bfe1190df\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}], \"total_count\":1}" + headers: + Content-Length: + - "237" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ac6e3a21-3b3c-4f79-8f56-c09864e329da + status: 200 OK + code: 200 + duration: 92.529525ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/768b277e-0b53-4b4d-b2da-3bb77b84627b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"768b277e-0b53-4b4d-b2da-3bb77b84627b\", \"name\":\"tf_tests_policy_projectid\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:30.450405Z\", \"updated_at\":\"2025-11-17T17:10:30.450405Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c93538b3-a117-45cc-910e-9865ce993934 + status: 200 OK + code: 200 + duration: 203.288188ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/768b277e-0b53-4b4d-b2da-3bb77b84627b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 395 + body: "{\"id\":\"768b277e-0b53-4b4d-b2da-3bb77b84627b\", \"name\":\"tf_tests_policy_projectid\", \"description\":\"a description\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T17:10:30.450405Z\", \"updated_at\":\"2025-11-17T17:10:30.450405Z\", \"editable\":true, \"deletable\":true, \"managed\":false, \"nb_rules\":1, \"nb_scopes\":1, \"nb_permission_sets\":1, \"tags\":[], \"no_principal\":true}" + headers: + Content-Length: + - "395" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6c81ec0e-af06-461c-bb4d-1ff17dfa69ec + status: 200 OK + code: 200 + duration: 117.186539ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + policy_id: + - 768b277e-0b53-4b4d-b2da-3bb77b84627b + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/rules?policy_id=768b277e-0b53-4b4d-b2da-3bb77b84627b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 237 + body: "{\"rules\":[{\"id\":\"fac69750-c760-4cc1-ba7a-d66bfe1190df\", \"permission_set_names\":[\"AllProductsFullAccess\"], \"permission_sets_scope_type\":\"projects\", \"condition\":\"\", \"project_ids\":[\"105bdce1-64c0-48ab-899d-868455867ecf\"]}], \"total_count\":1}" + headers: + Content-Length: + - "237" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 871de02a-1870-4f68-ab94-20dcf6a419e3 + status: 200 OK + code: 200 + duration: 55.26244ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/768b277e-0b53-4b4d-b2da-3bb77b84627b + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 29ce9ca6-5b27-4664-b15a-bc84d7a6cab6 + status: 204 No Content + code: 204 + duration: 144.452883ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d1061703-08ce-49d5-bafb-2a394cd711a4 + status: 204 No Content + code: 204 + duration: 104.42832ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/edfc8e58-884b-4a30-a482-394b19d39c52 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 4fbf3a2d-6ea6-455b-8967-d379bcad1c09 + status: 204 No Content + code: 204 + duration: 212.902812ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/applications/fdbcb3f8-6822-437c-bb1b-04bd057800d8 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5b4f27eb-47a9-480b-b7fa-1f302c3e4837 + status: 204 No Content + code: 204 + duration: 181.568828ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/46bf45c9-07b5-4526-b549-db20c4e0b0c3 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 46d8f6ff-aabf-4f5d-aeac-0a9ea0b291e8 + status: 204 No Content + code: 204 + duration: 1.470063117s +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/policies/768b277e-0b53-4b4d-b2da-3bb77b84627b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"policy\",\"resource_id\":\"768b277e-0b53-4b4d-b2da-3bb77b84627b\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7d60cfe6-970e-427f-ae35-faeeaaba9c84 + status: 404 Not Found + code: 404 + duration: 41.631494ms diff --git a/internal/services/iam/testdata/ssh-key-account-basic.cassette.yaml b/internal/services/iam/testdata/ssh-key-account-basic.cassette.yaml index 3bef8fe85..63d5c3e1c 100644 --- a/internal/services/iam/testdata/ssh-key-account-basic.cassette.yaml +++ b/internal/services/iam/testdata/ssh-key-account-basic.cassette.yaml @@ -1,495 +1,327 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 212 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-test-account-ssh-key-basic","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX opensource@scaleway.com","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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 486 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:45.286436Z","disabled":false,"fingerprint":"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)","id":"8504f2fd-bb17-454a-9002-ab96626826f5","name":"tf-test-account-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX","updated_at":"2025-01-22T15:32:45.286436Z"}' - headers: - Content-Length: - - "486" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - b6244fa3-e2eb-4708-a894-f354c68322a2 - status: 200 OK - code: 200 - duration: 394.862875ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/8504f2fd-bb17-454a-9002-ab96626826f5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 486 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:45.286436Z","disabled":false,"fingerprint":"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)","id":"8504f2fd-bb17-454a-9002-ab96626826f5","name":"tf-test-account-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX","updated_at":"2025-01-22T15:32:45.286436Z"}' - headers: - Content-Length: - - "486" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - d7e9eb55-28a7-4bb9-93c9-b2a00a890e3c - status: 200 OK - code: 200 - duration: 67.973208ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/8504f2fd-bb17-454a-9002-ab96626826f5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 486 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:45.286436Z","disabled":false,"fingerprint":"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)","id":"8504f2fd-bb17-454a-9002-ab96626826f5","name":"tf-test-account-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX","updated_at":"2025-01-22T15:32:45.286436Z"}' - headers: - Content-Length: - - "486" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - 2c21315b-0bc9-431e-88a3-ab07222cc2f5 - status: 200 OK - code: 200 - duration: 203.19275ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/8504f2fd-bb17-454a-9002-ab96626826f5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 486 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:45.286436Z","disabled":false,"fingerprint":"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)","id":"8504f2fd-bb17-454a-9002-ab96626826f5","name":"tf-test-account-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX","updated_at":"2025-01-22T15:32:45.286436Z"}' - headers: - Content-Length: - - "486" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 9361ee64-b7e2-4936-b29e-9abd1653c543 - status: 200 OK - code: 200 - duration: 67.030709ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/8504f2fd-bb17-454a-9002-ab96626826f5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 486 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:45.286436Z","disabled":false,"fingerprint":"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)","id":"8504f2fd-bb17-454a-9002-ab96626826f5","name":"tf-test-account-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX","updated_at":"2025-01-22T15:32:45.286436Z"}' - headers: - Content-Length: - - "486" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - 26b4c6a4-b53d-4187-a52a-1f5160f47a34 - status: 200 OK - code: 200 - duration: 56.360375ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 48 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-test-account-ssh-key-basic-updated"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/8504f2fd-bb17-454a-9002-ab96626826f5 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:45.286436Z","disabled":false,"fingerprint":"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)","id":"8504f2fd-bb17-454a-9002-ab96626826f5","name":"tf-test-account-ssh-key-basic-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX","updated_at":"2025-01-22T15:32:49.278255Z"}' - headers: - Content-Length: - - "494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:49 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: - - 5fc9bd8f-a99f-4ed3-be4a-03eeda3e1547 - status: 200 OK - code: 200 - duration: 87.989584ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/8504f2fd-bb17-454a-9002-ab96626826f5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:45.286436Z","disabled":false,"fingerprint":"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)","id":"8504f2fd-bb17-454a-9002-ab96626826f5","name":"tf-test-account-ssh-key-basic-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX","updated_at":"2025-01-22T15:32:49.278255Z"}' - headers: - Content-Length: - - "494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:49 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: - - 8041e256-13de-40ba-9541-4210421b77d1 - status: 200 OK - code: 200 - duration: 68.724666ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/8504f2fd-bb17-454a-9002-ab96626826f5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:45.286436Z","disabled":false,"fingerprint":"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)","id":"8504f2fd-bb17-454a-9002-ab96626826f5","name":"tf-test-account-ssh-key-basic-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX","updated_at":"2025-01-22T15:32:49.278255Z"}' - headers: - Content-Length: - - "494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:49 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: - - 4ba3b55e-3576-43be-9b49-e7193c79b2cc - status: 200 OK - code: 200 - duration: 59.308333ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/8504f2fd-bb17-454a-9002-ab96626826f5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:45.286436Z","disabled":false,"fingerprint":"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)","id":"8504f2fd-bb17-454a-9002-ab96626826f5","name":"tf-test-account-ssh-key-basic-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX","updated_at":"2025-01-22T15:32:49.278255Z"}' - headers: - Content-Length: - - "494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:51 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: - - fb800ba8-6e0b-4ec8-8716-7ec536d086ab - status: 200 OK - code: 200 - duration: 98.797542ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/8504f2fd-bb17-454a-9002-ab96626826f5 - 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: - - Wed, 22 Jan 2025 15:32:52 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: - - 88035c37-c5a4-465b-9055-755bf356191d - status: 204 No Content - code: 204 - duration: 68.073833ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 212 + host: api.scaleway.com + body: "{\"name\":\"tf-test-account-ssh-key-basic\",\"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX opensource@scaleway.com\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 486 + body: "{\"id\":\"2eda936f-b903-49e1-8b9f-5250d0f2f7b4\", \"name\":\"tf-test-account-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX\", \"fingerprint\":\"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:34.951644Z\", \"updated_at\":\"2025-11-17T17:10:34.951644Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "486" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a57b0cfe-ce3d-490f-a68f-5dd7ea02deca + status: 200 OK + code: 200 + duration: 153.794661ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/2eda936f-b903-49e1-8b9f-5250d0f2f7b4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 486 + body: "{\"id\":\"2eda936f-b903-49e1-8b9f-5250d0f2f7b4\", \"name\":\"tf-test-account-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX\", \"fingerprint\":\"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:34.951644Z\", \"updated_at\":\"2025-11-17T17:10:34.951644Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "486" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 18b55c77-0b92-4678-be2b-e83299176f07 + status: 200 OK + code: 200 + duration: 79.104125ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/2eda936f-b903-49e1-8b9f-5250d0f2f7b4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 486 + body: "{\"id\":\"2eda936f-b903-49e1-8b9f-5250d0f2f7b4\", \"name\":\"tf-test-account-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX\", \"fingerprint\":\"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:34.951644Z\", \"updated_at\":\"2025-11-17T17:10:34.951644Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "486" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 60c78a8d-d3a8-4a4d-ba22-73048855eb70 + status: 200 OK + code: 200 + duration: 44.443646ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/2eda936f-b903-49e1-8b9f-5250d0f2f7b4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 486 + body: "{\"id\":\"2eda936f-b903-49e1-8b9f-5250d0f2f7b4\", \"name\":\"tf-test-account-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX\", \"fingerprint\":\"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:34.951644Z\", \"updated_at\":\"2025-11-17T17:10:34.951644Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "486" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9b361e10-7eb5-4d82-8c1a-e8fe9538d7ff + status: 200 OK + code: 200 + duration: 78.995451ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/2eda936f-b903-49e1-8b9f-5250d0f2f7b4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 486 + body: "{\"id\":\"2eda936f-b903-49e1-8b9f-5250d0f2f7b4\", \"name\":\"tf-test-account-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX\", \"fingerprint\":\"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:34.951644Z\", \"updated_at\":\"2025-11-17T17:10:34.951644Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "486" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 747cb380-f147-4f55-a7d2-d945702546a5 + status: 200 OK + code: 200 + duration: 51.678131ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 48 + host: api.scaleway.com + body: "{\"name\":\"tf-test-account-ssh-key-basic-updated\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/2eda936f-b903-49e1-8b9f-5250d0f2f7b4 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"2eda936f-b903-49e1-8b9f-5250d0f2f7b4\", \"name\":\"tf-test-account-ssh-key-basic-updated\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX\", \"fingerprint\":\"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:34.951644Z\", \"updated_at\":\"2025-11-17T17:10:37.177244Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 41f8a945-ab59-4ce7-b6a0-20e2a23203ff + status: 200 OK + code: 200 + duration: 84.935624ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/2eda936f-b903-49e1-8b9f-5250d0f2f7b4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"2eda936f-b903-49e1-8b9f-5250d0f2f7b4\", \"name\":\"tf-test-account-ssh-key-basic-updated\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX\", \"fingerprint\":\"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:34.951644Z\", \"updated_at\":\"2025-11-17T17:10:37.177244Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a93599c3-5c74-42d1-8650-6a08af4ad36c + status: 200 OK + code: 200 + duration: 97.155663ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/2eda936f-b903-49e1-8b9f-5250d0f2f7b4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"2eda936f-b903-49e1-8b9f-5250d0f2f7b4\", \"name\":\"tf-test-account-ssh-key-basic-updated\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX\", \"fingerprint\":\"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:34.951644Z\", \"updated_at\":\"2025-11-17T17:10:37.177244Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - aabf236d-fcb9-4f89-b36f-f1adc318603f + status: 200 OK + code: 200 + duration: 101.842737ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/2eda936f-b903-49e1-8b9f-5250d0f2f7b4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"2eda936f-b903-49e1-8b9f-5250d0f2f7b4\", \"name\":\"tf-test-account-ssh-key-basic-updated\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX\", \"fingerprint\":\"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:34.951644Z\", \"updated_at\":\"2025-11-17T17:10:37.177244Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 35f57793-3b05-4398-9446-f4ae8c59bff2 + status: 200 OK + code: 200 + duration: 51.077789ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/2eda936f-b903-49e1-8b9f-5250d0f2f7b4 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e909049b-d62a-4773-94cb-99e460cba43c + status: 204 No Content + code: 204 + duration: 110.292283ms diff --git a/internal/services/iam/testdata/ssh-key-account-change-resource-name.cassette.yaml b/internal/services/iam/testdata/ssh-key-account-change-resource-name.cassette.yaml index 7bce344a4..931836c55 100644 --- a/internal/services/iam/testdata/ssh-key-account-change-resource-name.cassette.yaml +++ b/internal/services/iam/testdata/ssh-key-account-change-resource-name.cassette.yaml @@ -1,542 +1,357 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 230 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"TestAccScalewayAccountSSHKey_ChangeResourceName","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO opensource@scaleway.com","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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 504 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.912400Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"b3928eb2-05ca-4ed3-9969-428d830ade17","name":"TestAccScalewayAccountSSHKey_ChangeResourceName","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:39.912400Z"}' - headers: - Content-Length: - - "504" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - b93dcdf5-2a55-4f41-aeb1-5219ef40e740 - status: 200 OK - code: 200 - duration: 682.296125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/b3928eb2-05ca-4ed3-9969-428d830ade17 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 504 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.912400Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"b3928eb2-05ca-4ed3-9969-428d830ade17","name":"TestAccScalewayAccountSSHKey_ChangeResourceName","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:39.912400Z"}' - headers: - Content-Length: - - "504" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - b9728e26-a873-4a7f-b146-eb731054de7b - status: 200 OK - code: 200 - duration: 78.385292ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/b3928eb2-05ca-4ed3-9969-428d830ade17 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 504 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.912400Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"b3928eb2-05ca-4ed3-9969-428d830ade17","name":"TestAccScalewayAccountSSHKey_ChangeResourceName","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:39.912400Z"}' - headers: - Content-Length: - - "504" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - a881ec8c-88bc-463b-a25b-7dc70b22ca4d - status: 200 OK - code: 200 - duration: 65.00925ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/b3928eb2-05ca-4ed3-9969-428d830ade17 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 504 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.912400Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"b3928eb2-05ca-4ed3-9969-428d830ade17","name":"TestAccScalewayAccountSSHKey_ChangeResourceName","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:39.912400Z"}' - headers: - Content-Length: - - "504" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - f1a0fb83-b6e9-461b-a0da-3a48e19a0b0c - status: 200 OK - code: 200 - duration: 70.617167ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/b3928eb2-05ca-4ed3-9969-428d830ade17 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 504 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.912400Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"b3928eb2-05ca-4ed3-9969-428d830ade17","name":"TestAccScalewayAccountSSHKey_ChangeResourceName","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:39.912400Z"}' - headers: - Content-Length: - - "504" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:43 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: - - ce649920-7ece-462b-85d4-ed9bf1ed8d8a - status: 200 OK - code: 200 - duration: 80.221041ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/b3928eb2-05ca-4ed3-9969-428d830ade17 - 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: - - Wed, 22 Jan 2025 15:32:44 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: - - 1192cfbf-ed3b-4c35-abee-b450ac1d2ece - status: 204 No Content - code: 204 - duration: 84.778ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 230 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"TestAccScalewayAccountSSHKey_ChangeResourceName","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO opensource@scaleway.com","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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 504 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.782894Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"307d2f88-4225-41e7-b9de-92bd8bdd253e","name":"TestAccScalewayAccountSSHKey_ChangeResourceName","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:44.782894Z"}' - headers: - Content-Length: - - "504" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - 69f571ff-e974-40cb-b832-5a4c25bfe01a - status: 200 OK - code: 200 - duration: 745.346708ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/307d2f88-4225-41e7-b9de-92bd8bdd253e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 504 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.782894Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"307d2f88-4225-41e7-b9de-92bd8bdd253e","name":"TestAccScalewayAccountSSHKey_ChangeResourceName","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:44.782894Z"}' - headers: - Content-Length: - - "504" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - b0804532-6f78-4226-b53e-5ff07627424d - status: 200 OK - code: 200 - duration: 66.254125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/307d2f88-4225-41e7-b9de-92bd8bdd253e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 504 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.782894Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"307d2f88-4225-41e7-b9de-92bd8bdd253e","name":"TestAccScalewayAccountSSHKey_ChangeResourceName","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:44.782894Z"}' - headers: - Content-Length: - - "504" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - 2768357e-01c0-49ef-8859-dd4a5f73c762 - status: 200 OK - code: 200 - duration: 72.584125ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/307d2f88-4225-41e7-b9de-92bd8bdd253e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 504 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.782894Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"307d2f88-4225-41e7-b9de-92bd8bdd253e","name":"TestAccScalewayAccountSSHKey_ChangeResourceName","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:44.782894Z"}' - headers: - Content-Length: - - "504" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 971891e3-f219-4646-8a39-4ab594a32c17 - status: 200 OK - code: 200 - duration: 66.884625ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/307d2f88-4225-41e7-b9de-92bd8bdd253e - 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: - - Wed, 22 Jan 2025 15:32:48 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: - - f4279026-1ea0-4d96-8ec5-4be442baa603 - status: 204 No Content - code: 204 - duration: 122.814459ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 230 + host: api.scaleway.com + body: "{\"name\":\"TestAccScalewayAccountSSHKey_ChangeResourceName\",\"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO opensource@scaleway.com\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 504 + body: "{\"id\":\"63589ef5-9121-4981-a721-771e93983585\", \"name\":\"TestAccScalewayAccountSSHKey_ChangeResourceName\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:35.622958Z\", \"updated_at\":\"2025-11-17T17:10:35.622958Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "504" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f7304939-6d95-409d-b0aa-84da0835ddb4 + status: 200 OK + code: 200 + duration: 144.159707ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/63589ef5-9121-4981-a721-771e93983585 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 504 + body: "{\"id\":\"63589ef5-9121-4981-a721-771e93983585\", \"name\":\"TestAccScalewayAccountSSHKey_ChangeResourceName\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:35.622958Z\", \"updated_at\":\"2025-11-17T17:10:35.622958Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "504" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e2523a80-e7c0-439f-80bc-e804129df498 + status: 200 OK + code: 200 + duration: 85.31346ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/63589ef5-9121-4981-a721-771e93983585 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 504 + body: "{\"id\":\"63589ef5-9121-4981-a721-771e93983585\", \"name\":\"TestAccScalewayAccountSSHKey_ChangeResourceName\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:35.622958Z\", \"updated_at\":\"2025-11-17T17:10:35.622958Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "504" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 387e34a6-0bcb-487a-89bf-3394eb05b9e8 + status: 200 OK + code: 200 + duration: 113.617803ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/63589ef5-9121-4981-a721-771e93983585 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 504 + body: "{\"id\":\"63589ef5-9121-4981-a721-771e93983585\", \"name\":\"TestAccScalewayAccountSSHKey_ChangeResourceName\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:35.622958Z\", \"updated_at\":\"2025-11-17T17:10:35.622958Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "504" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 52265c94-af4b-4819-a861-17f42b7e9551 + status: 200 OK + code: 200 + duration: 114.856432ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/63589ef5-9121-4981-a721-771e93983585 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 504 + body: "{\"id\":\"63589ef5-9121-4981-a721-771e93983585\", \"name\":\"TestAccScalewayAccountSSHKey_ChangeResourceName\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:35.622958Z\", \"updated_at\":\"2025-11-17T17:10:35.622958Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "504" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5216ba05-1a32-4849-8ae0-16cb8b4c19ee + status: 200 OK + code: 200 + duration: 55.087429ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/63589ef5-9121-4981-a721-771e93983585 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 91ba3ab6-af6e-4fa3-81aa-77abe02523e7 + status: 204 No Content + code: 204 + duration: 144.802307ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 230 + host: api.scaleway.com + body: "{\"name\":\"TestAccScalewayAccountSSHKey_ChangeResourceName\",\"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO opensource@scaleway.com\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 504 + body: "{\"id\":\"2ba039d6-c28c-4297-b8c9-af3c3faad29d\", \"name\":\"TestAccScalewayAccountSSHKey_ChangeResourceName\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:37.845635Z\", \"updated_at\":\"2025-11-17T17:10:37.845635Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "504" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1200360a-42bf-4b3f-8030-5bde0c3e7307 + status: 200 OK + code: 200 + duration: 148.648804ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/2ba039d6-c28c-4297-b8c9-af3c3faad29d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 504 + body: "{\"id\":\"2ba039d6-c28c-4297-b8c9-af3c3faad29d\", \"name\":\"TestAccScalewayAccountSSHKey_ChangeResourceName\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:37.845635Z\", \"updated_at\":\"2025-11-17T17:10:37.845635Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "504" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9151cabb-e38e-4004-bc00-e63b1943b6a3 + status: 200 OK + code: 200 + duration: 65.11725ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/2ba039d6-c28c-4297-b8c9-af3c3faad29d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 504 + body: "{\"id\":\"2ba039d6-c28c-4297-b8c9-af3c3faad29d\", \"name\":\"TestAccScalewayAccountSSHKey_ChangeResourceName\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:37.845635Z\", \"updated_at\":\"2025-11-17T17:10:37.845635Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "504" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6aea33b5-b0dd-46c3-86d2-f7677242b331 + status: 200 OK + code: 200 + duration: 60.719302ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/2ba039d6-c28c-4297-b8c9-af3c3faad29d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 504 + body: "{\"id\":\"2ba039d6-c28c-4297-b8c9-af3c3faad29d\", \"name\":\"TestAccScalewayAccountSSHKey_ChangeResourceName\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:37.845635Z\", \"updated_at\":\"2025-11-17T17:10:37.845635Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "504" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 00192e0e-c79f-4a24-a48f-45f856647941 + status: 200 OK + code: 200 + duration: 81.548007ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/2ba039d6-c28c-4297-b8c9-af3c3faad29d + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a86ca679-3cc7-4c17-9752-85b9a0883050 + status: 204 No Content + code: 204 + duration: 77.98587ms diff --git a/internal/services/iam/testdata/ssh-key-account-with-new-line.cassette.yaml b/internal/services/iam/testdata/ssh-key-account-with-new-line.cassette.yaml index cb6354848..d502a62c9 100644 --- a/internal/services/iam/testdata/ssh-key-account-with-new-line.cassette.yaml +++ b/internal/services/iam/testdata/ssh-key-account-with-new-line.cassette.yaml @@ -1,248 +1,164 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 214 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-test-account-ssh-key-newline","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDjfkdWCwkYlVQMDUfiZlVrmjaGOfBYnmkucssae8Iup opensource@scaleway.com","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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 488 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.728557Z","disabled":false,"fingerprint":"256 MD5:7e:49:97:21:a6:ef:e1:31:45:17:70:95:7a:44:9b:cf (ssh-ed25519)","id":"8058a3ac-e58a-45b0-924e-9a1c3627221e","name":"tf-test-account-ssh-key-newline","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDjfkdWCwkYlVQMDUfiZlVrmjaGOfBYnmkucssae8Iup","updated_at":"2025-01-22T15:32:39.728557Z"}' - headers: - Content-Length: - - "488" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 422aed11-87b5-40f7-8988-d61798eb25b3 - status: 200 OK - code: 200 - duration: 316.895542ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/8058a3ac-e58a-45b0-924e-9a1c3627221e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 488 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.728557Z","disabled":false,"fingerprint":"256 MD5:7e:49:97:21:a6:ef:e1:31:45:17:70:95:7a:44:9b:cf (ssh-ed25519)","id":"8058a3ac-e58a-45b0-924e-9a1c3627221e","name":"tf-test-account-ssh-key-newline","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDjfkdWCwkYlVQMDUfiZlVrmjaGOfBYnmkucssae8Iup","updated_at":"2025-01-22T15:32:39.728557Z"}' - headers: - Content-Length: - - "488" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - abe7c12b-961d-409f-b460-50205558fc13 - status: 200 OK - code: 200 - duration: 67.898708ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/8058a3ac-e58a-45b0-924e-9a1c3627221e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 488 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.728557Z","disabled":false,"fingerprint":"256 MD5:7e:49:97:21:a6:ef:e1:31:45:17:70:95:7a:44:9b:cf (ssh-ed25519)","id":"8058a3ac-e58a-45b0-924e-9a1c3627221e","name":"tf-test-account-ssh-key-newline","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDjfkdWCwkYlVQMDUfiZlVrmjaGOfBYnmkucssae8Iup","updated_at":"2025-01-22T15:32:39.728557Z"}' - headers: - Content-Length: - - "488" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 7095ef96-3a23-439b-8592-2309b3a38c62 - status: 200 OK - code: 200 - duration: 70.741833ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/8058a3ac-e58a-45b0-924e-9a1c3627221e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 488 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.728557Z","disabled":false,"fingerprint":"256 MD5:7e:49:97:21:a6:ef:e1:31:45:17:70:95:7a:44:9b:cf (ssh-ed25519)","id":"8058a3ac-e58a-45b0-924e-9a1c3627221e","name":"tf-test-account-ssh-key-newline","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDjfkdWCwkYlVQMDUfiZlVrmjaGOfBYnmkucssae8Iup","updated_at":"2025-01-22T15:32:39.728557Z"}' - headers: - Content-Length: - - "488" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 3cdbbeb6-acd7-470b-bd84-7ef9e1ec4243 - status: 200 OK - code: 200 - duration: 75.80375ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/8058a3ac-e58a-45b0-924e-9a1c3627221e - 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: - - Wed, 22 Jan 2025 15:32:43 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: - - 3ee628e6-e332-437f-9d40-98056a6fcd54 - status: 204 No Content - code: 204 - duration: 587.0685ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 214 + host: api.scaleway.com + body: "{\"name\":\"tf-test-account-ssh-key-newline\",\"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDjfkdWCwkYlVQMDUfiZlVrmjaGOfBYnmkucssae8Iup opensource@scaleway.com\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 488 + body: "{\"id\":\"52ee5074-4e56-42c7-84d6-9fb66af77664\", \"name\":\"tf-test-account-ssh-key-newline\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDjfkdWCwkYlVQMDUfiZlVrmjaGOfBYnmkucssae8Iup\", \"fingerprint\":\"256 MD5:7e:49:97:21:a6:ef:e1:31:45:17:70:95:7a:44:9b:cf (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:36.056536Z\", \"updated_at\":\"2025-11-17T17:10:36.056536Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "488" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9aba450d-bf62-4790-8d3d-6847dd2c9b13 + status: 200 OK + code: 200 + duration: 200.983072ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/52ee5074-4e56-42c7-84d6-9fb66af77664 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 488 + body: "{\"id\":\"52ee5074-4e56-42c7-84d6-9fb66af77664\", \"name\":\"tf-test-account-ssh-key-newline\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDjfkdWCwkYlVQMDUfiZlVrmjaGOfBYnmkucssae8Iup\", \"fingerprint\":\"256 MD5:7e:49:97:21:a6:ef:e1:31:45:17:70:95:7a:44:9b:cf (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:36.056536Z\", \"updated_at\":\"2025-11-17T17:10:36.056536Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "488" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1085bb4f-b5da-4d3e-b3bf-b372b9fcb516 + status: 200 OK + code: 200 + duration: 82.078776ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/52ee5074-4e56-42c7-84d6-9fb66af77664 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 488 + body: "{\"id\":\"52ee5074-4e56-42c7-84d6-9fb66af77664\", \"name\":\"tf-test-account-ssh-key-newline\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDjfkdWCwkYlVQMDUfiZlVrmjaGOfBYnmkucssae8Iup\", \"fingerprint\":\"256 MD5:7e:49:97:21:a6:ef:e1:31:45:17:70:95:7a:44:9b:cf (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:36.056536Z\", \"updated_at\":\"2025-11-17T17:10:36.056536Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "488" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a165bbee-507c-4123-8fd8-43f6297bc924 + status: 200 OK + code: 200 + duration: 48.160724ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/52ee5074-4e56-42c7-84d6-9fb66af77664 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 488 + body: "{\"id\":\"52ee5074-4e56-42c7-84d6-9fb66af77664\", \"name\":\"tf-test-account-ssh-key-newline\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDjfkdWCwkYlVQMDUfiZlVrmjaGOfBYnmkucssae8Iup\", \"fingerprint\":\"256 MD5:7e:49:97:21:a6:ef:e1:31:45:17:70:95:7a:44:9b:cf (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:36.056536Z\", \"updated_at\":\"2025-11-17T17:10:36.056536Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "488" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - bccc00f0-9b7c-4cdf-9329-f3aedefca317 + status: 200 OK + code: 200 + duration: 126.19389ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/52ee5074-4e56-42c7-84d6-9fb66af77664 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c14678a7-f054-4acc-a5c6-32ade52c0945 + status: 204 No Content + code: 204 + duration: 86.883193ms diff --git a/internal/services/iam/testdata/ssh-key-basic.cassette.yaml b/internal/services/iam/testdata/ssh-key-basic.cassette.yaml index feef95576..d08e9739b 100644 --- a/internal/services/iam/testdata/ssh-key-basic.cassette.yaml +++ b/internal/services/iam/testdata/ssh-key-basic.cassette.yaml @@ -1,544 +1,359 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 208 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-test-iam-ssh-key-basic","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO opensource@scaleway.com","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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 482 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:51.132400Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"ef606e41-c3f9-4327-b6ce-f0394ff7b74c","name":"tf-test-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:51.132400Z"}' - headers: - Content-Length: - - "482" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:51 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: - - 05109b7c-7d63-4b2a-9f3c-cd5467a4e876 - status: 200 OK - code: 200 - duration: 620.720708ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ef606e41-c3f9-4327-b6ce-f0394ff7b74c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 482 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:51.132400Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"ef606e41-c3f9-4327-b6ce-f0394ff7b74c","name":"tf-test-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:51.132400Z"}' - headers: - Content-Length: - - "482" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:51 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: - - 22d3c019-1cee-4f27-b281-8a48ed8d5eb8 - status: 200 OK - code: 200 - duration: 80.285709ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ef606e41-c3f9-4327-b6ce-f0394ff7b74c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 482 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:51.132400Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"ef606e41-c3f9-4327-b6ce-f0394ff7b74c","name":"tf-test-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:51.132400Z"}' - headers: - Content-Length: - - "482" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:52 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: - - 30cff26c-c3b5-45ce-97bf-92e67b2c81f8 - status: 200 OK - code: 200 - duration: 142.557292ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ef606e41-c3f9-4327-b6ce-f0394ff7b74c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 482 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:51.132400Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"ef606e41-c3f9-4327-b6ce-f0394ff7b74c","name":"tf-test-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:51.132400Z"}' - headers: - Content-Length: - - "482" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - 0b08d16a-7373-46ed-a6bc-7d96ea672365 - status: 200 OK - code: 200 - duration: 57.730125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ef606e41-c3f9-4327-b6ce-f0394ff7b74c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 482 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:51.132400Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"ef606e41-c3f9-4327-b6ce-f0394ff7b74c","name":"tf-test-iam-ssh-key-basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:51.132400Z"}' - headers: - Content-Length: - - "482" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - 550e40fa-c2b2-45ac-959d-feb78d021d7f - status: 200 OK - code: 200 - duration: 56.136875ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 44 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-test-iam-ssh-key-basic-updated"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ef606e41-c3f9-4327-b6ce-f0394ff7b74c - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 490 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:51.132400Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"ef606e41-c3f9-4327-b6ce-f0394ff7b74c","name":"tf-test-iam-ssh-key-basic-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:55.300836Z"}' - headers: - Content-Length: - - "490" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 8236612a-e959-4330-b416-98e5331b9ec8 - status: 200 OK - code: 200 - duration: 85.446791ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ef606e41-c3f9-4327-b6ce-f0394ff7b74c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 490 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:51.132400Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"ef606e41-c3f9-4327-b6ce-f0394ff7b74c","name":"tf-test-iam-ssh-key-basic-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:55.300836Z"}' - headers: - Content-Length: - - "490" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 4c66b5ad-cb47-4803-8343-fa3208d29e04 - status: 200 OK - code: 200 - duration: 62.230208ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ef606e41-c3f9-4327-b6ce-f0394ff7b74c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 490 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:51.132400Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"ef606e41-c3f9-4327-b6ce-f0394ff7b74c","name":"tf-test-iam-ssh-key-basic-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:55.300836Z"}' - headers: - Content-Length: - - "490" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:55 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: - - 8ba38cf8-0edc-44f8-9c50-59cb4a64a742 - status: 200 OK - code: 200 - duration: 74.174666ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ef606e41-c3f9-4327-b6ce-f0394ff7b74c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 490 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:51.132400Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"ef606e41-c3f9-4327-b6ce-f0394ff7b74c","name":"tf-test-iam-ssh-key-basic-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:55.300836Z"}' - headers: - Content-Length: - - "490" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:56 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: - - 3c1baedc-10ee-4015-956d-56555693b354 - status: 200 OK - code: 200 - duration: 72.994583ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ef606e41-c3f9-4327-b6ce-f0394ff7b74c - 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: - - Wed, 22 Jan 2025 15:32:58 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: - - fa30112f-a0bd-4280-a637-e71cda3630c9 - status: 204 No Content - code: 204 - duration: 67.292125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/ef606e41-c3f9-4327-b6ce-f0394ff7b74c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 128 - uncompressed: false - body: '{"message":"resource is not found","resource":"ssh_key","resource_id":"ef606e41-c3f9-4327-b6ce-f0394ff7b74c","type":"not_found"}' - headers: - Content-Length: - - "128" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:58 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: - - 8673de4d-66f6-486f-b466-324ad34c8e34 - status: 404 Not Found - code: 404 - duration: 19.415292ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 208 + host: api.scaleway.com + body: "{\"name\":\"tf-test-iam-ssh-key-basic\",\"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO opensource@scaleway.com\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 482 + body: "{\"id\":\"aa4e0a6d-776f-4a3d-9c43-6ac240593acd\", \"name\":\"tf-test-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:54.775066Z\", \"updated_at\":\"2025-11-17T17:10:54.775066Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "482" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 692a37b4-d10e-4f04-bbca-aac6c763169e + status: 200 OK + code: 200 + duration: 154.49181ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aa4e0a6d-776f-4a3d-9c43-6ac240593acd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 482 + body: "{\"id\":\"aa4e0a6d-776f-4a3d-9c43-6ac240593acd\", \"name\":\"tf-test-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:54.775066Z\", \"updated_at\":\"2025-11-17T17:10:54.775066Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "482" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1d0df4e2-85fa-4958-8b5e-6a29e0ab11bd + status: 200 OK + code: 200 + duration: 77.792962ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aa4e0a6d-776f-4a3d-9c43-6ac240593acd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 482 + body: "{\"id\":\"aa4e0a6d-776f-4a3d-9c43-6ac240593acd\", \"name\":\"tf-test-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:54.775066Z\", \"updated_at\":\"2025-11-17T17:10:54.775066Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "482" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 099f3178-f967-4ac0-8f00-459a81296200 + status: 200 OK + code: 200 + duration: 57.34131ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aa4e0a6d-776f-4a3d-9c43-6ac240593acd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 482 + body: "{\"id\":\"aa4e0a6d-776f-4a3d-9c43-6ac240593acd\", \"name\":\"tf-test-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:54.775066Z\", \"updated_at\":\"2025-11-17T17:10:54.775066Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "482" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5ec409cf-0eac-432a-9c3f-6de7428581cf + status: 200 OK + code: 200 + duration: 68.604492ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aa4e0a6d-776f-4a3d-9c43-6ac240593acd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 482 + body: "{\"id\":\"aa4e0a6d-776f-4a3d-9c43-6ac240593acd\", \"name\":\"tf-test-iam-ssh-key-basic\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:54.775066Z\", \"updated_at\":\"2025-11-17T17:10:54.775066Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "482" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1a51dee1-266b-484d-87bd-bea94790a4b2 + status: 200 OK + code: 200 + duration: 68.746393ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 44 + host: api.scaleway.com + body: "{\"name\":\"tf-test-iam-ssh-key-basic-updated\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aa4e0a6d-776f-4a3d-9c43-6ac240593acd + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 490 + body: "{\"id\":\"aa4e0a6d-776f-4a3d-9c43-6ac240593acd\", \"name\":\"tf-test-iam-ssh-key-basic-updated\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:54.775066Z\", \"updated_at\":\"2025-11-17T17:10:56.527974Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "490" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1cf751b0-ed4c-4371-9909-f35cbcc28afe + status: 200 OK + code: 200 + duration: 103.621846ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aa4e0a6d-776f-4a3d-9c43-6ac240593acd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 490 + body: "{\"id\":\"aa4e0a6d-776f-4a3d-9c43-6ac240593acd\", \"name\":\"tf-test-iam-ssh-key-basic-updated\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:54.775066Z\", \"updated_at\":\"2025-11-17T17:10:56.527974Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "490" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 622f7d57-f44f-4417-bac4-c2090be9df8e + status: 200 OK + code: 200 + duration: 79.140604ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aa4e0a6d-776f-4a3d-9c43-6ac240593acd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 490 + body: "{\"id\":\"aa4e0a6d-776f-4a3d-9c43-6ac240593acd\", \"name\":\"tf-test-iam-ssh-key-basic-updated\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:54.775066Z\", \"updated_at\":\"2025-11-17T17:10:56.527974Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "490" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 632a5df8-42cd-4772-b91f-62c7e48a8831 + status: 200 OK + code: 200 + duration: 48.280488ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aa4e0a6d-776f-4a3d-9c43-6ac240593acd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 490 + body: "{\"id\":\"aa4e0a6d-776f-4a3d-9c43-6ac240593acd\", \"name\":\"tf-test-iam-ssh-key-basic-updated\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:54.775066Z\", \"updated_at\":\"2025-11-17T17:10:56.527974Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "490" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f7f22be7-f345-458f-9ca0-6230225cf8cf + status: 200 OK + code: 200 + duration: 58.281802ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aa4e0a6d-776f-4a3d-9c43-6ac240593acd + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f442c278-6366-4873-b875-a2209ffee81c + status: 204 No Content + code: 204 + duration: 82.564695ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aa4e0a6d-776f-4a3d-9c43-6ac240593acd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: "{\"message\":\"resource is not found\",\"resource\":\"ssh_key\",\"resource_id\":\"aa4e0a6d-776f-4a3d-9c43-6ac240593acd\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 48deacae-0021-465e-9d40-805e574f6d7e + status: 404 Not Found + code: 404 + duration: 33.847483ms diff --git a/internal/services/iam/testdata/ssh-key-change-resource-name.cassette.yaml b/internal/services/iam/testdata/ssh-key-change-resource-name.cassette.yaml index dcd3705fa..b26381f0a 100644 --- a/internal/services/iam/testdata/ssh-key-change-resource-name.cassette.yaml +++ b/internal/services/iam/testdata/ssh-key-change-resource-name.cassette.yaml @@ -1,591 +1,389 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 223 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-test-iam-ssh-key-change-resource-name","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO opensource@scaleway.com","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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 497 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.833621Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"407c7672-f5c2-4464-95bb-4fe126e85737","name":"tf-test-iam-ssh-key-change-resource-name","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:39.833621Z"}' - headers: - Content-Length: - - "497" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 3d600c7c-88d8-48b3-a8fd-f43deb62bc10 - status: 200 OK - code: 200 - duration: 673.836834ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/407c7672-f5c2-4464-95bb-4fe126e85737 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 497 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.833621Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"407c7672-f5c2-4464-95bb-4fe126e85737","name":"tf-test-iam-ssh-key-change-resource-name","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:39.833621Z"}' - headers: - Content-Length: - - "497" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 9b25a952-37f5-4199-914b-46ecadef7541 - status: 200 OK - code: 200 - duration: 77.03125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/407c7672-f5c2-4464-95bb-4fe126e85737 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 497 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.833621Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"407c7672-f5c2-4464-95bb-4fe126e85737","name":"tf-test-iam-ssh-key-change-resource-name","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:39.833621Z"}' - headers: - Content-Length: - - "497" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - e1a0c275-3320-47ac-80fa-48e40f0adc15 - status: 200 OK - code: 200 - duration: 54.293375ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/407c7672-f5c2-4464-95bb-4fe126e85737 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 497 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.833621Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"407c7672-f5c2-4464-95bb-4fe126e85737","name":"tf-test-iam-ssh-key-change-resource-name","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:39.833621Z"}' - headers: - Content-Length: - - "497" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 23a45c94-67bc-4776-9f36-fa3cc39e5eea - status: 200 OK - code: 200 - duration: 70.174042ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/407c7672-f5c2-4464-95bb-4fe126e85737 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 497 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.833621Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"407c7672-f5c2-4464-95bb-4fe126e85737","name":"tf-test-iam-ssh-key-change-resource-name","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:39.833621Z"}' - headers: - Content-Length: - - "497" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:43 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: - - e95059f6-1cc3-41f8-87d8-dc90f72ca3eb - status: 200 OK - code: 200 - duration: 83.178958ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/407c7672-f5c2-4464-95bb-4fe126e85737 - 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: - - Wed, 22 Jan 2025 15:32:44 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: - - ba461944-e32d-4ab6-b8f6-39967cd70d16 - status: 204 No Content - code: 204 - duration: 72.938291ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 223 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-test-iam-ssh-key-change-resource-name","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO opensource@scaleway.com","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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 497 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.813392Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"6751e9e0-10b4-4dfa-bb1d-d7fdc8d42f16","name":"tf-test-iam-ssh-key-change-resource-name","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:44.813392Z"}' - headers: - Content-Length: - - "497" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - 5a44b8ae-6fa2-451c-90de-ba33f292518e - status: 200 OK - code: 200 - duration: 765.843208ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/6751e9e0-10b4-4dfa-bb1d-d7fdc8d42f16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 497 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.813392Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"6751e9e0-10b4-4dfa-bb1d-d7fdc8d42f16","name":"tf-test-iam-ssh-key-change-resource-name","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:44.813392Z"}' - headers: - Content-Length: - - "497" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - 8b715871-8cc9-4e2d-a95d-046bb59f5b76 - status: 200 OK - code: 200 - duration: 67.666791ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/6751e9e0-10b4-4dfa-bb1d-d7fdc8d42f16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 497 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.813392Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"6751e9e0-10b4-4dfa-bb1d-d7fdc8d42f16","name":"tf-test-iam-ssh-key-change-resource-name","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:44.813392Z"}' - headers: - Content-Length: - - "497" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - 1f69ecc8-ef30-4e26-8ef8-e0dac26cdb3f - status: 200 OK - code: 200 - duration: 63.20425ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/6751e9e0-10b4-4dfa-bb1d-d7fdc8d42f16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 497 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:44.813392Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"6751e9e0-10b4-4dfa-bb1d-d7fdc8d42f16","name":"tf-test-iam-ssh-key-change-resource-name","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:44.813392Z"}' - headers: - Content-Length: - - "497" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:46 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: - - 14f9e144-ff3c-4f9a-825e-9c5216fc474e - status: 200 OK - code: 200 - duration: 75.39825ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/6751e9e0-10b4-4dfa-bb1d-d7fdc8d42f16 - 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: - - Wed, 22 Jan 2025 15:32:48 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: - - 095b9b06-9d28-47c5-ab2e-9f31aea4ebe0 - status: 204 No Content - code: 204 - duration: 77.127333ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/6751e9e0-10b4-4dfa-bb1d-d7fdc8d42f16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 128 - uncompressed: false - body: '{"message":"resource is not found","resource":"ssh_key","resource_id":"6751e9e0-10b4-4dfa-bb1d-d7fdc8d42f16","type":"not_found"}' - headers: - Content-Length: - - "128" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - 6cf605ad-72a7-48be-befe-2e8e9178270a - status: 404 Not Found - code: 404 - duration: 22.57275ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 223 + host: api.scaleway.com + body: "{\"name\":\"tf-test-iam-ssh-key-change-resource-name\",\"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO opensource@scaleway.com\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 497 + body: "{\"id\":\"46d394df-eb86-463c-8e81-f6379cb61852\", \"name\":\"tf-test-iam-ssh-key-change-resource-name\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.015537Z\", \"updated_at\":\"2025-11-17T17:10:50.015537Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "497" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - af269c7b-6d77-41f6-86e4-5167f3b124c6 + status: 200 OK + code: 200 + duration: 224.055605ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/46d394df-eb86-463c-8e81-f6379cb61852 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 497 + body: "{\"id\":\"46d394df-eb86-463c-8e81-f6379cb61852\", \"name\":\"tf-test-iam-ssh-key-change-resource-name\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.015537Z\", \"updated_at\":\"2025-11-17T17:10:50.015537Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "497" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e06b51e7-62d8-4dc4-a966-b16dfa52c95c + status: 200 OK + code: 200 + duration: 49.640635ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/46d394df-eb86-463c-8e81-f6379cb61852 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 497 + body: "{\"id\":\"46d394df-eb86-463c-8e81-f6379cb61852\", \"name\":\"tf-test-iam-ssh-key-change-resource-name\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.015537Z\", \"updated_at\":\"2025-11-17T17:10:50.015537Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "497" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7f68eaf9-5f10-453c-a46c-48ebfd97ae1e + status: 200 OK + code: 200 + duration: 52.046551ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/46d394df-eb86-463c-8e81-f6379cb61852 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 497 + body: "{\"id\":\"46d394df-eb86-463c-8e81-f6379cb61852\", \"name\":\"tf-test-iam-ssh-key-change-resource-name\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.015537Z\", \"updated_at\":\"2025-11-17T17:10:50.015537Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "497" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5ac85173-e216-4bc0-afa3-9d9d3f18a577 + status: 200 OK + code: 200 + duration: 48.466077ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/46d394df-eb86-463c-8e81-f6379cb61852 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 497 + body: "{\"id\":\"46d394df-eb86-463c-8e81-f6379cb61852\", \"name\":\"tf-test-iam-ssh-key-change-resource-name\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.015537Z\", \"updated_at\":\"2025-11-17T17:10:50.015537Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "497" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5685bb59-7354-4b7f-a40e-405eeaee69b4 + status: 200 OK + code: 200 + duration: 53.136983ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/46d394df-eb86-463c-8e81-f6379cb61852 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7f194d0f-914e-407c-9631-962e8993ad87 + status: 204 No Content + code: 204 + duration: 79.622564ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 223 + host: api.scaleway.com + body: "{\"name\":\"tf-test-iam-ssh-key-change-resource-name\",\"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO opensource@scaleway.com\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 497 + body: "{\"id\":\"e06e258d-0bef-46e1-9354-c83d7cebaccd\", \"name\":\"tf-test-iam-ssh-key-change-resource-name\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:52.427300Z\", \"updated_at\":\"2025-11-17T17:10:52.427300Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "497" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7da6af4b-2a6a-4e95-be29-f27b98b06181 + status: 200 OK + code: 200 + duration: 154.276923ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/e06e258d-0bef-46e1-9354-c83d7cebaccd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 497 + body: "{\"id\":\"e06e258d-0bef-46e1-9354-c83d7cebaccd\", \"name\":\"tf-test-iam-ssh-key-change-resource-name\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:52.427300Z\", \"updated_at\":\"2025-11-17T17:10:52.427300Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "497" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - bb0c907d-2f56-45e4-904c-8bec089897e3 + status: 200 OK + code: 200 + duration: 92.213133ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/e06e258d-0bef-46e1-9354-c83d7cebaccd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 497 + body: "{\"id\":\"e06e258d-0bef-46e1-9354-c83d7cebaccd\", \"name\":\"tf-test-iam-ssh-key-change-resource-name\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:52.427300Z\", \"updated_at\":\"2025-11-17T17:10:52.427300Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "497" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 35a457c3-17ac-4a40-8feb-38db07317594 + status: 200 OK + code: 200 + duration: 99.627406ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/e06e258d-0bef-46e1-9354-c83d7cebaccd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 497 + body: "{\"id\":\"e06e258d-0bef-46e1-9354-c83d7cebaccd\", \"name\":\"tf-test-iam-ssh-key-change-resource-name\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:52.427300Z\", \"updated_at\":\"2025-11-17T17:10:52.427300Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "497" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3e9b98e7-2e6e-487d-88a5-f85f98b26df2 + status: 200 OK + code: 200 + duration: 67.177805ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/e06e258d-0bef-46e1-9354-c83d7cebaccd + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 757d9461-cede-42dc-883c-92b006b6c037 + status: 204 No Content + code: 204 + duration: 60.976696ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/e06e258d-0bef-46e1-9354-c83d7cebaccd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: "{\"message\":\"resource is not found\",\"resource\":\"ssh_key\",\"resource_id\":\"e06e258d-0bef-46e1-9354-c83d7cebaccd\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8f6e48cd-6ed8-4116-a7d9-4baa761adb64 + status: 404 Not Found + code: 404 + duration: 32.678253ms diff --git a/internal/services/iam/testdata/ssh-key-disabled.cassette.yaml b/internal/services/iam/testdata/ssh-key-disabled.cassette.yaml index 85ba7177c..1c7f1b952 100644 --- a/internal/services/iam/testdata/ssh-key-disabled.cassette.yaml +++ b/internal/services/iam/testdata/ssh-key-disabled.cassette.yaml @@ -1,791 +1,522 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 211 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-test-iam-ssh-key-disabled","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO opensource@scaleway.com","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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 485 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.505676Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"3aa4b6a3-c333-41dc-868f-f5d07f87df40","name":"tf-test-iam-ssh-key-disabled","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:39.505676Z"}' - headers: - Content-Length: - - "485" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 0fc69145-f7ef-4530-9015-99c28696f6e0 - status: 200 OK - code: 200 - duration: 745.281ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/3aa4b6a3-c333-41dc-868f-f5d07f87df40 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 485 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.505676Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"3aa4b6a3-c333-41dc-868f-f5d07f87df40","name":"tf-test-iam-ssh-key-disabled","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:39.505676Z"}' - headers: - Content-Length: - - "485" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 1e93f794-6435-4349-80b8-6d9085c794f4 - status: 200 OK - code: 200 - duration: 71.433125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/3aa4b6a3-c333-41dc-868f-f5d07f87df40 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 485 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.505676Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"3aa4b6a3-c333-41dc-868f-f5d07f87df40","name":"tf-test-iam-ssh-key-disabled","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:39.505676Z"}' - headers: - Content-Length: - - "485" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - d29f46a2-5b18-4387-9af3-d4e170580bd5 - status: 200 OK - code: 200 - duration: 69.352ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/3aa4b6a3-c333-41dc-868f-f5d07f87df40 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 485 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.505676Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"3aa4b6a3-c333-41dc-868f-f5d07f87df40","name":"tf-test-iam-ssh-key-disabled","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:39.505676Z"}' - headers: - Content-Length: - - "485" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - 8aa4b29f-fe16-427a-8abe-65e5869a1b0f - status: 200 OK - code: 200 - duration: 62.637334ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/3aa4b6a3-c333-41dc-868f-f5d07f87df40 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 485 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.505676Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"3aa4b6a3-c333-41dc-868f-f5d07f87df40","name":"tf-test-iam-ssh-key-disabled","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:39.505676Z"}' - headers: - Content-Length: - - "485" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:43 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: - - d8cc9caa-86da-47e3-abc2-85420606f79f - status: 200 OK - code: 200 - duration: 352.854166ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 17 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"disabled":true}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/3aa4b6a3-c333-41dc-868f-f5d07f87df40 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 484 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.505676Z","disabled":true,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"3aa4b6a3-c333-41dc-868f-f5d07f87df40","name":"tf-test-iam-ssh-key-disabled","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:44.515455Z"}' - headers: - Content-Length: - - "484" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:44 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: - - 3d3c3881-3e22-48ef-8698-b7a862779e8c - status: 200 OK - code: 200 - duration: 77.70175ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/3aa4b6a3-c333-41dc-868f-f5d07f87df40 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 484 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.505676Z","disabled":true,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"3aa4b6a3-c333-41dc-868f-f5d07f87df40","name":"tf-test-iam-ssh-key-disabled","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:44.515455Z"}' - headers: - Content-Length: - - "484" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:44 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: - - e7f8656b-39e5-4043-b754-9aa6e48ba676 - status: 200 OK - code: 200 - duration: 74.354125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/3aa4b6a3-c333-41dc-868f-f5d07f87df40 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 484 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.505676Z","disabled":true,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"3aa4b6a3-c333-41dc-868f-f5d07f87df40","name":"tf-test-iam-ssh-key-disabled","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:44.515455Z"}' - headers: - Content-Length: - - "484" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:44 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: - - 3dbcc02a-c386-4f95-86e0-b1ca560c2ac4 - status: 200 OK - code: 200 - duration: 57.489625ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/3aa4b6a3-c333-41dc-868f-f5d07f87df40 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 484 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.505676Z","disabled":true,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"3aa4b6a3-c333-41dc-868f-f5d07f87df40","name":"tf-test-iam-ssh-key-disabled","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:44.515455Z"}' - headers: - Content-Length: - - "484" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:45 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: - - abb4e2f7-787a-48d1-9f38-a17520879300 - status: 200 OK - code: 200 - duration: 74.980834ms - - id: 9 - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/3aa4b6a3-c333-41dc-868f-f5d07f87df40 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 484 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.505676Z","disabled":true,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"3aa4b6a3-c333-41dc-868f-f5d07f87df40","name":"tf-test-iam-ssh-key-disabled","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:44.515455Z"}' - headers: - Content-Length: - - "484" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32: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: - - a694f5d9-4c1e-4cb3-9a93-3a0a0cc16e52 - status: 200 OK - code: 200 - duration: 63.932166ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 18 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"disabled":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/3aa4b6a3-c333-41dc-868f-f5d07f87df40 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 485 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.505676Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"3aa4b6a3-c333-41dc-868f-f5d07f87df40","name":"tf-test-iam-ssh-key-disabled","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:48.201874Z"}' - headers: - Content-Length: - - "485" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - 361c0f71-05ed-463c-9d51-b566e740ea3e - status: 200 OK - code: 200 - duration: 138.230334ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/3aa4b6a3-c333-41dc-868f-f5d07f87df40 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 485 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.505676Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"3aa4b6a3-c333-41dc-868f-f5d07f87df40","name":"tf-test-iam-ssh-key-disabled","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:48.201874Z"}' - headers: - Content-Length: - - "485" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - 2d636b9f-cd9c-4568-b148-ae8059f1bc32 - status: 200 OK - code: 200 - duration: 62.262292ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/3aa4b6a3-c333-41dc-868f-f5d07f87df40 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 485 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.505676Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"3aa4b6a3-c333-41dc-868f-f5d07f87df40","name":"tf-test-iam-ssh-key-disabled","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:48.201874Z"}' - headers: - Content-Length: - - "485" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:48 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: - - e932f2b1-c4da-4ed4-8d31-fd43d5c336eb - status: 200 OK - code: 200 - duration: 73.942584ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/3aa4b6a3-c333-41dc-868f-f5d07f87df40 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 485 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:39.505676Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"3aa4b6a3-c333-41dc-868f-f5d07f87df40","name":"tf-test-iam-ssh-key-disabled","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:48.201874Z"}' - headers: - Content-Length: - - "485" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:49 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: - - 2726d24d-278f-45a2-a6de-de32c1e84bbe - status: 200 OK - code: 200 - duration: 88.420792ms - - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/3aa4b6a3-c333-41dc-868f-f5d07f87df40 - 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: - - Wed, 22 Jan 2025 15:32:51 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: - - a3268467-4880-435a-97ac-b8858455fb73 - status: 204 No Content - code: 204 - duration: 144.000917ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/3aa4b6a3-c333-41dc-868f-f5d07f87df40 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 128 - uncompressed: false - body: '{"message":"resource is not found","resource":"ssh_key","resource_id":"3aa4b6a3-c333-41dc-868f-f5d07f87df40","type":"not_found"}' - headers: - Content-Length: - - "128" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:51 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: - - b91e26f5-1e57-4ebc-8e2f-008b9e8a7f66 - status: 404 Not Found - code: 404 - duration: 100.718875ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 211 + host: api.scaleway.com + body: "{\"name\":\"tf-test-iam-ssh-key-disabled\",\"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO opensource@scaleway.com\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"aaf982d2-8009-44f5-88a7-7cc6f1c714f4\", \"name\":\"tf-test-iam-ssh-key-disabled\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.620449Z\", \"updated_at\":\"2025-11-17T17:10:50.620449Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 693f1e80-6cd5-435a-a668-8babbea221bf + status: 200 OK + code: 200 + duration: 249.025556ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aaf982d2-8009-44f5-88a7-7cc6f1c714f4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"aaf982d2-8009-44f5-88a7-7cc6f1c714f4\", \"name\":\"tf-test-iam-ssh-key-disabled\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.620449Z\", \"updated_at\":\"2025-11-17T17:10:50.620449Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f9c62bc0-70b6-4d91-896d-31649c5e1050 + status: 200 OK + code: 200 + duration: 72.724ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aaf982d2-8009-44f5-88a7-7cc6f1c714f4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"aaf982d2-8009-44f5-88a7-7cc6f1c714f4\", \"name\":\"tf-test-iam-ssh-key-disabled\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.620449Z\", \"updated_at\":\"2025-11-17T17:10:50.620449Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - dcf6f71a-0f0b-456b-9baf-e1ba80d02b88 + status: 200 OK + code: 200 + duration: 57.954713ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aaf982d2-8009-44f5-88a7-7cc6f1c714f4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"aaf982d2-8009-44f5-88a7-7cc6f1c714f4\", \"name\":\"tf-test-iam-ssh-key-disabled\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.620449Z\", \"updated_at\":\"2025-11-17T17:10:50.620449Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f14458d6-6666-4dd8-a012-7ebf6f004f46 + status: 200 OK + code: 200 + duration: 48.230825ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aaf982d2-8009-44f5-88a7-7cc6f1c714f4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"aaf982d2-8009-44f5-88a7-7cc6f1c714f4\", \"name\":\"tf-test-iam-ssh-key-disabled\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.620449Z\", \"updated_at\":\"2025-11-17T17:10:50.620449Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ad8f28a2-f9e0-468d-a716-d72aa5acfea8 + status: 200 OK + code: 200 + duration: 81.832082ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 17 + host: api.scaleway.com + body: "{\"disabled\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aaf982d2-8009-44f5-88a7-7cc6f1c714f4 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 484 + body: "{\"id\":\"aaf982d2-8009-44f5-88a7-7cc6f1c714f4\", \"name\":\"tf-test-iam-ssh-key-disabled\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.620449Z\", \"updated_at\":\"2025-11-17T17:10:53.314262Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":true}" + headers: + Content-Length: + - "484" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 930e5926-c84e-4e02-ad7b-e17d1e010e70 + status: 200 OK + code: 200 + duration: 122.310224ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aaf982d2-8009-44f5-88a7-7cc6f1c714f4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 484 + body: "{\"id\":\"aaf982d2-8009-44f5-88a7-7cc6f1c714f4\", \"name\":\"tf-test-iam-ssh-key-disabled\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.620449Z\", \"updated_at\":\"2025-11-17T17:10:53.314262Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":true}" + headers: + Content-Length: + - "484" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ad53fc70-bc0d-499e-94cb-1ca5243310db + status: 200 OK + code: 200 + duration: 45.495036ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aaf982d2-8009-44f5-88a7-7cc6f1c714f4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 484 + body: "{\"id\":\"aaf982d2-8009-44f5-88a7-7cc6f1c714f4\", \"name\":\"tf-test-iam-ssh-key-disabled\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.620449Z\", \"updated_at\":\"2025-11-17T17:10:53.314262Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":true}" + headers: + Content-Length: + - "484" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - bedced7e-04f8-488b-ad57-88baa87aaa97 + status: 200 OK + code: 200 + duration: 96.943445ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aaf982d2-8009-44f5-88a7-7cc6f1c714f4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 484 + body: "{\"id\":\"aaf982d2-8009-44f5-88a7-7cc6f1c714f4\", \"name\":\"tf-test-iam-ssh-key-disabled\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.620449Z\", \"updated_at\":\"2025-11-17T17:10:53.314262Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":true}" + headers: + Content-Length: + - "484" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ba64a8da-f57b-4bf9-90aa-d75ca5fd89b0 + status: 200 OK + code: 200 + duration: 93.156872ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aaf982d2-8009-44f5-88a7-7cc6f1c714f4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 484 + body: "{\"id\":\"aaf982d2-8009-44f5-88a7-7cc6f1c714f4\", \"name\":\"tf-test-iam-ssh-key-disabled\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.620449Z\", \"updated_at\":\"2025-11-17T17:10:53.314262Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":true}" + headers: + Content-Length: + - "484" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 22f5ef61-7db4-4b96-a600-071ab59c7847 + status: 200 OK + code: 200 + duration: 62.492454ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 18 + host: api.scaleway.com + body: "{\"disabled\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aaf982d2-8009-44f5-88a7-7cc6f1c714f4 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"aaf982d2-8009-44f5-88a7-7cc6f1c714f4\", \"name\":\"tf-test-iam-ssh-key-disabled\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.620449Z\", \"updated_at\":\"2025-11-17T17:10:55.705739Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 84633cc4-ef04-4e92-8238-dfaa4088fe5c + status: 200 OK + code: 200 + duration: 80.311123ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aaf982d2-8009-44f5-88a7-7cc6f1c714f4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"aaf982d2-8009-44f5-88a7-7cc6f1c714f4\", \"name\":\"tf-test-iam-ssh-key-disabled\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.620449Z\", \"updated_at\":\"2025-11-17T17:10:55.705739Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5fea5b82-8d18-479e-9442-65b403b9bf29 + status: 200 OK + code: 200 + duration: 46.069434ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aaf982d2-8009-44f5-88a7-7cc6f1c714f4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"aaf982d2-8009-44f5-88a7-7cc6f1c714f4\", \"name\":\"tf-test-iam-ssh-key-disabled\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.620449Z\", \"updated_at\":\"2025-11-17T17:10:55.705739Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9da27a73-fc08-41c8-8fdf-891643839b5a + status: 200 OK + code: 200 + duration: 53.047321ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aaf982d2-8009-44f5-88a7-7cc6f1c714f4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 485 + body: "{\"id\":\"aaf982d2-8009-44f5-88a7-7cc6f1c714f4\", \"name\":\"tf-test-iam-ssh-key-disabled\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:50.620449Z\", \"updated_at\":\"2025-11-17T17:10:55.705739Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "485" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ebc2bd9b-44c9-4a34-a417-5afd78b41216 + status: 200 OK + code: 200 + duration: 47.953449ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aaf982d2-8009-44f5-88a7-7cc6f1c714f4 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 83771fdf-1292-4d35-a616-6cb19a757212 + status: 204 No Content + code: 204 + duration: 96.406516ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/aaf982d2-8009-44f5-88a7-7cc6f1c714f4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: "{\"message\":\"resource is not found\",\"resource\":\"ssh_key\",\"resource_id\":\"aaf982d2-8009-44f5-88a7-7cc6f1c714f4\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7209de9b-201e-494f-8fa2-67d7c83d396b + status: 404 Not Found + code: 404 + duration: 159.570475ms diff --git a/internal/services/iam/testdata/ssh-key-with-new-line.cassette.yaml b/internal/services/iam/testdata/ssh-key-with-new-line.cassette.yaml index 98fa2f976..cd987c35d 100644 --- a/internal/services/iam/testdata/ssh-key-with-new-line.cassette.yaml +++ b/internal/services/iam/testdata/ssh-key-with-new-line.cassette.yaml @@ -1,297 +1,196 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 210 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-test-iam-ssh-key-newline","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO opensource@scaleway.com","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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 484 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:52.962848Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"0e826097-ae48-4a94-a101-9f8d7d4770a8","name":"tf-test-iam-ssh-key-newline","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:52.962848Z"}' - headers: - Content-Length: - - "484" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - a1ec2d30-88ba-4592-9d16-886a854389be - status: 200 OK - code: 200 - duration: 699.92ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/0e826097-ae48-4a94-a101-9f8d7d4770a8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 484 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:52.962848Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"0e826097-ae48-4a94-a101-9f8d7d4770a8","name":"tf-test-iam-ssh-key-newline","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:52.962848Z"}' - headers: - Content-Length: - - "484" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - 05c20df3-048a-49d2-b861-699c0587091b - status: 200 OK - code: 200 - duration: 53.807041ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/0e826097-ae48-4a94-a101-9f8d7d4770a8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 484 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:52.962848Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"0e826097-ae48-4a94-a101-9f8d7d4770a8","name":"tf-test-iam-ssh-key-newline","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:52.962848Z"}' - headers: - Content-Length: - - "484" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:53 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: - - aa767695-9282-493a-a030-d5c315bc5f16 - status: 200 OK - code: 200 - duration: 61.581667ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/0e826097-ae48-4a94-a101-9f8d7d4770a8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 484 - uncompressed: false - body: '{"created_at":"2025-01-22T15:32:52.962848Z","disabled":false,"fingerprint":"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)","id":"0e826097-ae48-4a94-a101-9f8d7d4770a8","name":"tf-test-iam-ssh-key-newline","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO","updated_at":"2025-01-22T15:32:52.962848Z"}' - headers: - Content-Length: - - "484" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:54 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: - - 683b5544-0f75-4c7c-9626-c2e5d4689f5f - status: 200 OK - code: 200 - duration: 68.080666ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/0e826097-ae48-4a94-a101-9f8d7d4770a8 - 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: - - Wed, 22 Jan 2025 15:32:56 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: - - 8f656732-d29e-4408-bd1d-f3d78264d9df - status: 204 No Content - code: 204 - duration: 71.059125ms - - 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.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/0e826097-ae48-4a94-a101-9f8d7d4770a8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 128 - uncompressed: false - body: '{"message":"resource is not found","resource":"ssh_key","resource_id":"0e826097-ae48-4a94-a101-9f8d7d4770a8","type":"not_found"}' - headers: - Content-Length: - - "128" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 15:32:56 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: - - 2222ef6a-8524-4a36-90ab-6bee4f1b7c5c - status: 404 Not Found - code: 404 - duration: 21.869958ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 210 + host: api.scaleway.com + body: "{\"name\":\"tf-test-iam-ssh-key-newline\",\"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO opensource@scaleway.com\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 484 + body: "{\"id\":\"20dae26e-437f-4b19-99f2-36273cc0ac13\", \"name\":\"tf-test-iam-ssh-key-newline\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:52.336035Z\", \"updated_at\":\"2025-11-17T17:10:52.336035Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "484" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 39a25ffe-d505-4995-8fdd-43bcaef07c32 + status: 200 OK + code: 200 + duration: 239.443487ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/20dae26e-437f-4b19-99f2-36273cc0ac13 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 484 + body: "{\"id\":\"20dae26e-437f-4b19-99f2-36273cc0ac13\", \"name\":\"tf-test-iam-ssh-key-newline\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:52.336035Z\", \"updated_at\":\"2025-11-17T17:10:52.336035Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "484" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 24fba973-8a3f-4713-8d3e-34679d0aac23 + status: 200 OK + code: 200 + duration: 117.711143ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/20dae26e-437f-4b19-99f2-36273cc0ac13 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 484 + body: "{\"id\":\"20dae26e-437f-4b19-99f2-36273cc0ac13\", \"name\":\"tf-test-iam-ssh-key-newline\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:52.336035Z\", \"updated_at\":\"2025-11-17T17:10:52.336035Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "484" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e66f6c7b-0752-40c8-acd1-38d528775a45 + status: 200 OK + code: 200 + duration: 55.645826ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/20dae26e-437f-4b19-99f2-36273cc0ac13 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 484 + body: "{\"id\":\"20dae26e-437f-4b19-99f2-36273cc0ac13\", \"name\":\"tf-test-iam-ssh-key-newline\", \"public_key\":\"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJEoOOgQBLJPs4g/XcPTKT82NywNPpxeuA20FlOPlpO\", \"fingerprint\":\"256 MD5:6b:cd:72:8a:ae:45:24:4b:2b:72:f6:d0:6a:8d:16:06 (ssh-ed25519)\", \"created_at\":\"2025-11-17T17:10:52.336035Z\", \"updated_at\":\"2025-11-17T17:10:52.336035Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "484" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 09b6e618-77b7-406f-855f-06e54fb275fd + status: 200 OK + code: 200 + duration: 84.623096ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/20dae26e-437f-4b19-99f2-36273cc0ac13 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 8d8bcdba-e744-4e2b-bd16-d09435d8d473 + status: 204 No Content + code: 204 + duration: 105.370232ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/20dae26e-437f-4b19-99f2-36273cc0ac13 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: "{\"message\":\"resource is not found\",\"resource\":\"ssh_key\",\"resource_id\":\"20dae26e-437f-4b19-99f2-36273cc0ac13\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - da47bb0a-92a2-438c-8237-dd591e6d0e34 + status: 404 Not Found + code: 404 + duration: 46.173335ms diff --git a/internal/services/iam/testdata/user-member.cassette.yaml b/internal/services/iam/testdata/user-member.cassette.yaml index 9a2df20ef..76efa4222 100644 --- a/internal/services/iam/testdata/user-member.cassette.yaml +++ b/internal/services/iam/testdata/user-member.cassette.yaml @@ -1,644 +1,426 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 281 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"member":{"email":"foo@scaleway.com","send_password_email":false,"send_welcome_email":false,"username":"foo","password":"Firstaccesspsw123","first_name":"Foo","last_name":"Bar","phone_number":"","locale":"en_US"}}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 487 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:11:54.992881Z","deletable":true,"email":"foo@scaleway.com","first_name":"Foo","id":"69f339d9-a311-4d1c-b1d5-5a1ed88c936e","last_login_at":null,"last_name":"Bar","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:11:54.992881Z","username":"foo"}' - headers: - Content-Length: - - "487" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:11:55 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: - - 2b5193b7-0649-4fec-b59e-f90542e3a156 - status: 200 OK - code: 200 - duration: 572.89225ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/69f339d9-a311-4d1c-b1d5-5a1ed88c936e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 487 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:11:54.992881Z","deletable":true,"email":"foo@scaleway.com","first_name":"Foo","id":"69f339d9-a311-4d1c-b1d5-5a1ed88c936e","last_login_at":null,"last_name":"Bar","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:11:54.992881Z","username":"foo"}' - headers: - Content-Length: - - "487" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:11:55 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: - - 91799ed1-5531-4706-9897-acedc9a6ee83 - status: 200 OK - code: 200 - duration: 132.558458ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/69f339d9-a311-4d1c-b1d5-5a1ed88c936e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 487 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:11:54.992881Z","deletable":true,"email":"foo@scaleway.com","first_name":"Foo","id":"69f339d9-a311-4d1c-b1d5-5a1ed88c936e","last_login_at":null,"last_name":"Bar","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:11:54.992881Z","username":"foo"}' - headers: - Content-Length: - - "487" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:11:55 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: - - 6d30347b-1df9-4a20-9e68-0f536ac43cc7 - status: 200 OK - code: 200 - duration: 118.03125ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/69f339d9-a311-4d1c-b1d5-5a1ed88c936e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 487 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:11:54.992881Z","deletable":true,"email":"foo@scaleway.com","first_name":"Foo","id":"69f339d9-a311-4d1c-b1d5-5a1ed88c936e","last_login_at":null,"last_name":"Bar","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:11:54.992881Z","username":"foo"}' - headers: - Content-Length: - - "487" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:11:56 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: - - bcae4e82-7b81-4291-9a27-7c3da60d3ee3 - status: 200 OK - code: 200 - duration: 128.054417ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/69f339d9-a311-4d1c-b1d5-5a1ed88c936e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 487 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:11:54.992881Z","deletable":true,"email":"foo@scaleway.com","first_name":"Foo","id":"69f339d9-a311-4d1c-b1d5-5a1ed88c936e","last_login_at":null,"last_name":"Bar","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:11:54.992881Z","username":"foo"}' - headers: - Content-Length: - - "487" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:11:56 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: - - 39bd7ee4-bab7-4aea-b91f-2d14fb9100df - status: 200 OK - code: 200 - duration: 125.707667ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/69f339d9-a311-4d1c-b1d5-5a1ed88c936e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 487 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:11:54.992881Z","deletable":true,"email":"foo@scaleway.com","first_name":"Foo","id":"69f339d9-a311-4d1c-b1d5-5a1ed88c936e","last_login_at":null,"last_name":"Bar","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:11:54.992881Z","username":"foo"}' - headers: - Content-Length: - - "487" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:11:56 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: - - e915d13b-7b1a-460e-b376-edad4e54372e - status: 200 OK - code: 200 - duration: 123.839708ms - - id: 6 - 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: '{"tags":["tf_tests"],"email":"foobar@scaleway.com","first_name":"","last_name":"Baz","phone_number":"+33112345678","locale":"fr_FR"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/69f339d9-a311-4d1c-b1d5-5a1ed88c936e - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 509 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:11:54.992881Z","deletable":true,"email":"foobar@scaleway.com","first_name":"","id":"69f339d9-a311-4d1c-b1d5-5a1ed88c936e","last_login_at":null,"last_name":"Baz","locale":"fr_FR","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33112345678","status":"activated","tags":["tf_tests"],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:11:54.992881Z","username":"foo"}' - headers: - Content-Length: - - "509" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:11:56 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: - - 211408c5-fe4c-40ea-b360-928f6ebcb26f - status: 200 OK - code: 200 - duration: 136.947125ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"username":"foobar"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/69f339d9-a311-4d1c-b1d5-5a1ed88c936e/update-username - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 512 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:11:54.992881Z","deletable":true,"email":"foobar@scaleway.com","first_name":"","id":"69f339d9-a311-4d1c-b1d5-5a1ed88c936e","last_login_at":null,"last_name":"Baz","locale":"fr_FR","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33112345678","status":"activated","tags":["tf_tests"],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:11:56.824348Z","username":"foobar"}' - headers: - Content-Length: - - "512" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:11:56 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: - - 27d74933-c80c-42a7-81a7-96ef5b3208a4 - status: 200 OK - code: 200 - duration: 122.053334ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/69f339d9-a311-4d1c-b1d5-5a1ed88c936e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 512 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:11:54.992881Z","deletable":true,"email":"foobar@scaleway.com","first_name":"","id":"69f339d9-a311-4d1c-b1d5-5a1ed88c936e","last_login_at":null,"last_name":"Baz","locale":"fr_FR","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33112345678","status":"activated","tags":["tf_tests"],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:11:56.954184Z","username":"foobar"}' - headers: - Content-Length: - - "512" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:11:57 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: - - a1472c1e-de0b-41b3-b07e-099553159676 - status: 200 OK - code: 200 - duration: 146.749583ms - - id: 9 - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/69f339d9-a311-4d1c-b1d5-5a1ed88c936e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 512 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:11:54.992881Z","deletable":true,"email":"foobar@scaleway.com","first_name":"","id":"69f339d9-a311-4d1c-b1d5-5a1ed88c936e","last_login_at":null,"last_name":"Baz","locale":"fr_FR","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33112345678","status":"activated","tags":["tf_tests"],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:11:56.954184Z","username":"foobar"}' - headers: - Content-Length: - - "512" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:11:57 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: - - 5a5b05c9-6772-4b8f-b507-680f720ab49c - status: 200 OK - code: 200 - duration: 163.839292ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/69f339d9-a311-4d1c-b1d5-5a1ed88c936e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 512 - uncompressed: false - body: '{"account_root_user_id":"","created_at":"2025-06-11T09:11:54.992881Z","deletable":true,"email":"foobar@scaleway.com","first_name":"","id":"69f339d9-a311-4d1c-b1d5-5a1ed88c936e","last_login_at":null,"last_name":"Baz","locale":"fr_FR","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33112345678","status":"activated","tags":["tf_tests"],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-11T09:11:56.954184Z","username":"foobar"}' - headers: - Content-Length: - - "512" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:11:57 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: - - d603beb8-7a60-4850-8d4a-b7051abff4fa - status: 200 OK - code: 200 - duration: 154.696791ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/69f339d9-a311-4d1c-b1d5-5a1ed88c936e - 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: - - Wed, 11 Jun 2025 09:11:58 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: - - 831d8298-8169-4544-8f40-9b84f3c14afb - status: 204 No Content - code: 204 - duration: 162.163875ms - - 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.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/users/69f339d9-a311-4d1c-b1d5-5a1ed88c936e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 125 - uncompressed: false - body: '{"message":"resource is not found","resource":"user","resource_id":"69f339d9-a311-4d1c-b1d5-5a1ed88c936e","type":"not_found"}' - headers: - Content-Length: - - "125" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 11 Jun 2025 09:11:58 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: - - 5d83dd20-5d7b-4dd0-98c3-1f9055c69911 - status: 404 Not Found - code: 404 - duration: 31.510208ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 281 + host: api.scaleway.com + body: "{\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"member\":{\"email\":\"foo@scaleway.com\",\"send_password_email\":false,\"send_welcome_email\":false,\"username\":\"foo\",\"password\":\"Firstaccesspsw123\",\"first_name\":\"Foo\",\"last_name\":\"Bar\",\"phone_number\":\"\",\"locale\":\"en_US\"}}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 487 + body: "{\"id\":\"02c5864a-ca2b-4d47-9311-ca4e593f825e\", \"email\":\"foo@scaleway.com\", \"username\":\"foo\", \"first_name\":\"Foo\", \"last_name\":\"Bar\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-11-17T17:10:30.646958Z\", \"updated_at\":\"2025-11-17T17:10:30.646958Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "487" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - eea130a5-50df-434b-9369-e12abaacfefe + status: 200 OK + code: 200 + duration: 522.102035ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/02c5864a-ca2b-4d47-9311-ca4e593f825e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 487 + body: "{\"id\":\"02c5864a-ca2b-4d47-9311-ca4e593f825e\", \"email\":\"foo@scaleway.com\", \"username\":\"foo\", \"first_name\":\"Foo\", \"last_name\":\"Bar\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-11-17T17:10:30.646958Z\", \"updated_at\":\"2025-11-17T17:10:30.646958Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "487" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 999e7b97-dc14-403d-af61-5ec55b03e4f3 + status: 200 OK + code: 200 + duration: 185.775495ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/02c5864a-ca2b-4d47-9311-ca4e593f825e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 487 + body: "{\"id\":\"02c5864a-ca2b-4d47-9311-ca4e593f825e\", \"email\":\"foo@scaleway.com\", \"username\":\"foo\", \"first_name\":\"Foo\", \"last_name\":\"Bar\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-11-17T17:10:30.646958Z\", \"updated_at\":\"2025-11-17T17:10:30.646958Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "487" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 11bf6ca4-cf8d-4fe8-9f02-777cfa60ee81 + status: 200 OK + code: 200 + duration: 167.757978ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/02c5864a-ca2b-4d47-9311-ca4e593f825e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 487 + body: "{\"id\":\"02c5864a-ca2b-4d47-9311-ca4e593f825e\", \"email\":\"foo@scaleway.com\", \"username\":\"foo\", \"first_name\":\"Foo\", \"last_name\":\"Bar\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-11-17T17:10:30.646958Z\", \"updated_at\":\"2025-11-17T17:10:30.646958Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "487" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f606184b-9fa5-473e-950f-8bc6612ba8a4 + status: 200 OK + code: 200 + duration: 161.952063ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/02c5864a-ca2b-4d47-9311-ca4e593f825e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 487 + body: "{\"id\":\"02c5864a-ca2b-4d47-9311-ca4e593f825e\", \"email\":\"foo@scaleway.com\", \"username\":\"foo\", \"first_name\":\"Foo\", \"last_name\":\"Bar\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-11-17T17:10:30.646958Z\", \"updated_at\":\"2025-11-17T17:10:30.646958Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "487" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 530b9d63-4432-449f-81cc-8d39c7587f59 + status: 200 OK + code: 200 + duration: 186.404886ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/02c5864a-ca2b-4d47-9311-ca4e593f825e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 487 + body: "{\"id\":\"02c5864a-ca2b-4d47-9311-ca4e593f825e\", \"email\":\"foo@scaleway.com\", \"username\":\"foo\", \"first_name\":\"Foo\", \"last_name\":\"Bar\", \"phone_number\":\"\", \"locale\":\"en_US\", \"created_at\":\"2025-11-17T17:10:30.646958Z\", \"updated_at\":\"2025-11-17T17:10:30.646958Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[], \"locked\":false}" + headers: + Content-Length: + - "487" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5c6166be-3b79-4756-9cbe-5e518f53034c + status: 200 OK + code: 200 + duration: 49.904415ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 132 + host: api.scaleway.com + body: "{\"tags\":[\"tf_tests\"],\"email\":\"foobar@scaleway.com\",\"first_name\":\"\",\"last_name\":\"Baz\",\"phone_number\":\"+33112345678\",\"locale\":\"fr_FR\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/02c5864a-ca2b-4d47-9311-ca4e593f825e + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 509 + body: "{\"id\":\"02c5864a-ca2b-4d47-9311-ca4e593f825e\", \"email\":\"foobar@scaleway.com\", \"username\":\"foo\", \"first_name\":\"\", \"last_name\":\"Baz\", \"phone_number\":\"+33112345678\", \"locale\":\"fr_FR\", \"created_at\":\"2025-11-17T17:10:30.646958Z\", \"updated_at\":\"2025-11-17T17:10:30.646958Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[\"tf_tests\"], \"locked\":false}" + headers: + Content-Length: + - "509" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 5632bc59-a22a-41ba-93d4-c4c374727ae0 + status: 200 OK + code: 200 + duration: 193.494172ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 21 + host: api.scaleway.com + body: "{\"username\":\"foobar\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/02c5864a-ca2b-4d47-9311-ca4e593f825e/update-username + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 512 + body: "{\"id\":\"02c5864a-ca2b-4d47-9311-ca4e593f825e\", \"email\":\"foobar@scaleway.com\", \"username\":\"foobar\", \"first_name\":\"\", \"last_name\":\"Baz\", \"phone_number\":\"+33112345678\", \"locale\":\"fr_FR\", \"created_at\":\"2025-11-17T17:10:30.646958Z\", \"updated_at\":\"2025-11-17T17:10:33.487240Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[\"tf_tests\"], \"locked\":false}" + headers: + Content-Length: + - "512" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 01b03a21-774c-457a-b166-b75b7d64a780 + status: 200 OK + code: 200 + duration: 182.794631ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/02c5864a-ca2b-4d47-9311-ca4e593f825e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 512 + body: "{\"id\":\"02c5864a-ca2b-4d47-9311-ca4e593f825e\", \"email\":\"foobar@scaleway.com\", \"username\":\"foobar\", \"first_name\":\"\", \"last_name\":\"Baz\", \"phone_number\":\"+33112345678\", \"locale\":\"fr_FR\", \"created_at\":\"2025-11-17T17:10:30.646958Z\", \"updated_at\":\"2025-11-17T17:10:33.662378Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[\"tf_tests\"], \"locked\":false}" + headers: + Content-Length: + - "512" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7266fdcd-2021-4be1-9f09-27c23f4aadbe + status: 200 OK + code: 200 + duration: 158.746741ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/02c5864a-ca2b-4d47-9311-ca4e593f825e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 512 + body: "{\"id\":\"02c5864a-ca2b-4d47-9311-ca4e593f825e\", \"email\":\"foobar@scaleway.com\", \"username\":\"foobar\", \"first_name\":\"\", \"last_name\":\"Baz\", \"phone_number\":\"+33112345678\", \"locale\":\"fr_FR\", \"created_at\":\"2025-11-17T17:10:30.646958Z\", \"updated_at\":\"2025-11-17T17:10:33.662378Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[\"tf_tests\"], \"locked\":false}" + headers: + Content-Length: + - "512" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a1253211-9d82-45e5-82cd-0291e143ba74 + status: 200 OK + code: 200 + duration: 196.072373ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/02c5864a-ca2b-4d47-9311-ca4e593f825e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 512 + body: "{\"id\":\"02c5864a-ca2b-4d47-9311-ca4e593f825e\", \"email\":\"foobar@scaleway.com\", \"username\":\"foobar\", \"first_name\":\"\", \"last_name\":\"Baz\", \"phone_number\":\"+33112345678\", \"locale\":\"fr_FR\", \"created_at\":\"2025-11-17T17:10:30.646958Z\", \"updated_at\":\"2025-11-17T17:10:33.662378Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"deletable\":true, \"last_login_at\":null, \"type\":\"member\", \"two_factor_enabled\":false, \"status\":\"activated\", \"mfa\":false, \"account_root_user_id\":\"\", \"tags\":[\"tf_tests\"], \"locked\":false}" + headers: + Content-Length: + - "512" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6836c34e-dabc-468e-99c2-ff5c7d496fe2 + status: 200 OK + code: 200 + duration: 179.172897ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/02c5864a-ca2b-4d47-9311-ca4e593f825e + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 702d01d5-8cb9-4352-86fc-e62331526b93 + status: 204 No Content + code: 204 + duration: 316.494785ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users/02c5864a-ca2b-4d47-9311-ca4e593f825e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 125 + body: "{\"message\":\"resource is not found\",\"resource\":\"user\",\"resource_id\":\"02c5864a-ca2b-4d47-9311-ca4e593f825e\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "125" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 17:10:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 985f550f-61eb-49f8-b7ce-6f73600a056e + status: 404 Not Found + code: 404 + duration: 57.872509ms