diff --git a/go.mod b/go.mod index 9bfa7f1a14..311d327a0e 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ require ( github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 github.com/hashicorp/go-retryablehttp v0.7.0 github.com/hashicorp/terraform-plugin-sdk/v2 v2.8.0 - github.com/scaleway/scaleway-sdk-go v1.0.0-beta.7.0.20211005125957-db499d89a262 + github.com/scaleway/scaleway-sdk-go v1.0.0-beta.7.0.20211109132617-29e472beb5cd github.com/stretchr/testify v1.7.0 golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 diff --git a/go.sum b/go.sum index 139a67b8ce..86496f43c0 100644 --- a/go.sum +++ b/go.sum @@ -284,8 +284,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/scaleway/scaleway-sdk-go v1.0.0-beta.7.0.20211005125957-db499d89a262 h1:ioN4zmp/4AoCJ/BbuwmkpH+bnSSntgWMUN1PkQ46/nI= -github.com/scaleway/scaleway-sdk-go v1.0.0-beta.7.0.20211005125957-db499d89a262/go.mod h1:NnxccdAsg2lS0ng/kfLVLemUQR50FCM/cdZv2gqKDhw= +github.com/scaleway/scaleway-sdk-go v1.0.0-beta.7.0.20211109132617-29e472beb5cd h1:/jejlYKHj9/rSQbONniMDA2aZEDvGdDK0+1PFGT9b8Y= +github.com/scaleway/scaleway-sdk-go v1.0.0-beta.7.0.20211109132617-29e472beb5cd/go.mod h1:fCa7OJZ/9DRTnOKmxvT6pn+LPWUptQAmHF/SBJUGEcg= github.com/sebdah/goldie v1.0.0/go.mod h1:jXP4hmWywNEwZzhMuv2ccnqTSFpuq8iyQhtQdkkZBH4= github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= diff --git a/scaleway/helpers_lb.go b/scaleway/helpers_lb.go index 66067836a9..35ca21747e 100644 --- a/scaleway/helpers_lb.go +++ b/scaleway/helpers_lb.go @@ -3,6 +3,7 @@ package scaleway import ( "context" "fmt" + "reflect" "strings" "time" @@ -83,6 +84,120 @@ func flattenLbACLAction(action *lb.ACLAction) interface{} { } } +func expandPrivateNetworks(data interface{}, lbID string) ([]*lb.ZonedAPIAttachPrivateNetworkRequest, error) { + if data == nil { + return nil, nil + } + + var res []*lb.ZonedAPIAttachPrivateNetworkRequest + for _, pn := range data.([]interface{}) { + r := pn.(map[string]interface{}) + zonePN, pnID, err := parseZonedID(r["private_network_id"].(string)) + if err != nil { + return nil, err + } + pnRequest := &lb.ZonedAPIAttachPrivateNetworkRequest{ + PrivateNetworkID: pnID, + Zone: zonePN, + LBID: lbID, + } + + staticConfig := r["static_config"] + if len(staticConfig.([]interface{})) > 0 { + pnRequest.StaticConfig = expandLbPrivateNetworkStaticConfig(staticConfig) + } else { + pnRequest.DHCPConfig = expandLbPrivateNetworkDHCPConfig(r["dhcp_config"]) + } + + res = append(res, pnRequest) + } + + return res, nil +} + +func isPrivateNetworkEqual(A, B interface{}) bool { + // Find out the diff Private Network or not + if _, ok := A.(*lb.PrivateNetwork); ok { + if _, ok := B.(*lb.PrivateNetwork); ok { + if A.(*lb.PrivateNetwork).PrivateNetworkID == B.(*lb.PrivateNetwork).PrivateNetworkID { + // if both has dhcp config should not update + if A.(*lb.PrivateNetwork).DHCPConfig != nil && B.(*lb.PrivateNetwork).DHCPConfig != nil { + return true + } + // check static config + aConfig := A.(*lb.PrivateNetwork).StaticConfig + bConfig := B.(*lb.PrivateNetwork).StaticConfig + if aConfig != nil && bConfig != nil { + // check if static config is different + return reflect.DeepEqual(aConfig.IPAddress, bConfig.IPAddress) + } + } + } + } + return false +} + +func newPrivateNetwork(raw map[string]interface{}) *lb.PrivateNetwork { + _, pnID, _ := parseZonedID(raw["private_network_id"].(string)) + + pn := &lb.PrivateNetwork{PrivateNetworkID: pnID} + staticConfig := raw["static_config"] + if len(staticConfig.([]interface{})) > 0 { + pn.StaticConfig = expandLbPrivateNetworkStaticConfig(staticConfig) + } else { + pn.DHCPConfig = expandLbPrivateNetworkDHCPConfig(raw["dhcp_config"]) + } + + return pn +} +func privateNetworksToDetach(pns []*lb.PrivateNetwork, updates interface{}) (map[string]bool, error) { + actions := make(map[string]bool, len(pns)) + configs := make(map[string]*lb.PrivateNetwork, len(pns)) + // set detached all as default + for _, pn := range pns { + actions[pn.PrivateNetworkID] = true + configs[pn.PrivateNetworkID] = pn + } + //check if private network still exist or is different + for _, pn := range updates.([]interface{}) { + r := pn.(map[string]interface{}) + _, pnID, err := parseZonedID(r["private_network_id"].(string)) + if err != nil { + return nil, err + } + if _, exist := actions[pnID]; exist { + // check if config are equal + actions[pnID] = !isPrivateNetworkEqual(configs[pnID], newPrivateNetwork(r)) + } + } + return actions, nil +} + +func flattenPrivateNetworkConfigs(resList *lb.ListLBPrivateNetworksResponse) interface{} { + if len(resList.PrivateNetwork) == 0 || resList == nil { + return nil + } + + pnConfigs := resList.PrivateNetwork + pnI := []map[string]interface{}(nil) + var dhcpConfigExist bool + for _, pn := range pnConfigs { + if pn.DHCPConfig != nil { + dhcpConfigExist = true + } + pnZonedID := newZonedIDString(pn.LB.Zone, pn.PrivateNetworkID) + pnI = append(pnI, map[string]interface{}{ + "private_network_id": pnZonedID, + "dhcp_config": dhcpConfigExist, + "status": pn.Status, + "zone": pn.LB.Zone, + "static_config": flattenLbPrivateNetworkStaticConfig(pn.StaticConfig), + }) + } + + return pnI +} + func expandLbACLAction(raw interface{}) *lb.ACLAction { if raw == nil || len(raw.([]interface{})) != 1 { return nil diff --git a/scaleway/helpers_lb_test.go b/scaleway/helpers_lb_test.go new file mode 100644 index 0000000000..8826403e3e --- /dev/null +++ b/scaleway/helpers_lb_test.go @@ -0,0 +1,53 @@ +package scaleway + +import ( + "testing" + + "github.com/scaleway/scaleway-sdk-go/api/lb/v1" + "github.com/stretchr/testify/assert" +) + +func TestIsEqualPrivateNetwork(t *testing.T) { + tests := []struct { + name string + A *lb.PrivateNetwork + B *lb.PrivateNetwork + expected bool + }{ + { + name: "isEqualDHCP", + A: &lb.PrivateNetwork{PrivateNetworkID: "6ba7b810-9dad-11d1-80b4-00c04fd430c8", DHCPConfig: &lb.PrivateNetworkDHCPConfig{}}, + B: &lb.PrivateNetwork{PrivateNetworkID: "6ba7b810-9dad-11d1-80b4-00c04fd430c8", DHCPConfig: &lb.PrivateNetworkDHCPConfig{}}, + expected: true, + }, + { + name: "isEqualStatic", + A: &lb.PrivateNetwork{PrivateNetworkID: "6ba7b810-9dad-11d1-80b4-00c04fd430c8", StaticConfig: &lb.PrivateNetworkStaticConfig{IPAddress: []string{"172.16.0.100", "172.16.0.101"}}}, + B: &lb.PrivateNetwork{PrivateNetworkID: "6ba7b810-9dad-11d1-80b4-00c04fd430c8", StaticConfig: &lb.PrivateNetworkStaticConfig{IPAddress: []string{"172.16.0.100", "172.16.0.101"}}}, + expected: true, + }, + { + name: "areNotEqualStatic", + A: &lb.PrivateNetwork{PrivateNetworkID: "6ba7b810-9dad-11d1-80b4-00c04fd430c8", StaticConfig: &lb.PrivateNetworkStaticConfig{IPAddress: []string{"172.16.0.100", "172.16.0.101"}}}, + B: &lb.PrivateNetwork{PrivateNetworkID: "6ba7b810-9dad-11d1-80b4-00c04fd430c8", StaticConfig: &lb.PrivateNetworkStaticConfig{IPAddress: []string{"172.16.0.101", "172.16.0.101"}}}, + expected: false, + }, + { + name: "areNotEqualDHCPToStatic", + A: &lb.PrivateNetwork{PrivateNetworkID: "6ba7b810-9dad-11d1-80b4-00c04fd430c8", DHCPConfig: &lb.PrivateNetworkDHCPConfig{}}, + B: &lb.PrivateNetwork{PrivateNetworkID: "6ba7b810-9dad-11d1-80b4-00c04fd430c8", StaticConfig: &lb.PrivateNetworkStaticConfig{IPAddress: []string{"172.16.0.101", "172.16.0.101"}}}, + expected: false, + }, + { + name: "areNotEqualDHCPToStatic", + A: &lb.PrivateNetwork{PrivateNetworkID: "6ba7b810-9dad-11d1-80b4-00c04fd430c8", StaticConfig: &lb.PrivateNetworkStaticConfig{IPAddress: []string{"172.16.0.101", "172.16.0.101"}}}, + B: &lb.PrivateNetwork{PrivateNetworkID: "6ba7b810-9dad-11d1-80b4-00c04fd430c8", DHCPConfig: &lb.PrivateNetworkDHCPConfig{}}, + expected: false, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + assert.Equal(t, tt.expected, isPrivateNetworkEqual(tt.A, tt.B)) + }) + } +} diff --git a/scaleway/provider.go b/scaleway/provider.go index 0953637e9b..e256025643 100644 --- a/scaleway/provider.go +++ b/scaleway/provider.go @@ -84,7 +84,6 @@ func Provider(config *ProviderConfig) plugin.ProviderFunc { "scaleway_lb_backend": resourceScalewayLbBackend(), "scaleway_lb_certificate": resourceScalewayLbCertificate(), "scaleway_lb_frontend": resourceScalewayLbFrontend(), - "scaleway_lb_private_network": resourceScalewayLbPrivateNetwork(), "scaleway_lb_route": resourceScalewayLbRoute(), "scaleway_registry_namespace": resourceScalewayRegistryNamespace(), "scaleway_rdb_acl": resourceScalewayRdbACL(), diff --git a/scaleway/resource_lb.go b/scaleway/resource_lb.go index 5f7a680ce1..f23c75293b 100644 --- a/scaleway/resource_lb.go +++ b/scaleway/resource_lb.go @@ -7,6 +7,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" "github.com/scaleway/scaleway-sdk-go/api/lb/v1" "github.com/scaleway/scaleway-sdk-go/scw" ) @@ -71,6 +72,45 @@ func resourceScalewayLb() *schema.Resource { Default: false, Description: "Release the IPs related to this load-balancer", }, + "private_network": { + Type: schema.TypeList, + Optional: true, + MaxItems: 8, + Description: "List of private network to connect with your load balancer", + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "private_network_id": { + Type: schema.TypeString, + Required: true, + ValidateFunc: validationUUIDorUUIDWithLocality(), + Description: "The Private Network ID", + }, + "static_config": { + Description: "Define two IP addresses in the subnet of your private network that will be assigned for the principal and standby node of your load balancer.", + Type: schema.TypeList, + Optional: true, + Computed: true, + Elem: &schema.Schema{ + Type: schema.TypeString, + ValidateFunc: validation.IsIPAddress, + }, + }, + "dhcp_config": { + Description: "Set to true if you want to let DHCP assign IP addresses", + Type: schema.TypeBool, + Optional: true, + Computed: true, + }, + // Readonly attributes + "status": { + Type: schema.TypeString, + Computed: true, + Description: "The status of private network connection", + }, + "zone": zoneSchema(), + }, + }, + }, "region": regionComputedSchema(), "zone": zoneSchema(), "organization_id": organizationIDSchema(), @@ -105,17 +145,43 @@ func resourceScalewayLbCreate(ctx context.Context, d *schema.ResourceData, meta d.SetId(newZonedIDString(zone, res.ID)) // wait for lb + retryInterval := DefaultWaitLBRetryInterval _, err = lbAPI.WaitForLb(&lb.ZonedAPIWaitForLBRequest{ Zone: zone, LBID: res.ID, Timeout: scw.TimeDurationPtr(defaultInstanceServerWaitTimeout), - RetryInterval: DefaultWaitRetryInterval, + RetryInterval: &retryInterval, }, scw.WithContext(ctx)) // check err waiting process - if err != nil { + if err != nil && !is404Error(err) { return diag.FromErr(err) } + //attach private network + pnConfigs, pnExist := d.GetOk("private_network") + if pnExist { + pnConfigs, err := expandPrivateNetworks(pnConfigs, res.ID) + if err != nil { + return diag.FromErr(err) + } + + for _, config := range pnConfigs { + _, err := lbAPI.AttachPrivateNetwork(config, scw.WithContext(ctx)) + if err != nil && !is404Error(err) { + return diag.FromErr(err) + } + } + _, err = lbAPI.WaitForLb(&lb.ZonedAPIWaitForLBRequest{ + Zone: zone, + LBID: res.ID, + Timeout: scw.TimeDurationPtr(defaultInstanceServerWaitTimeout), + RetryInterval: &retryInterval, + }, scw.WithContext(ctx)) + if err != nil && !is404Error(err) { + return diag.FromErr(err) + } + } + return resourceScalewayLbRead(ctx, d, meta) } @@ -130,11 +196,7 @@ func resourceScalewayLbRead(ctx context.Context, d *schema.ResourceData, meta in LBID: ID, }, scw.WithContext(ctx)) - if err != nil { - if is404Error(err) { - d.SetId("") - return nil - } + if err != nil && !is404Error(err) { return diag.FromErr(err) } // set the region from zone @@ -161,6 +223,19 @@ func resourceScalewayLbRead(ctx context.Context, d *schema.ResourceData, meta in _ = d.Set("ip_id", newZonedIDString(zone, res.IP[0].ID)) _ = d.Set("ip_address", res.IP[0].IPAddress) + // retrieve attached private networks + resPN, err := lbAPI.ListLBPrivateNetworks(&lb.ZonedAPIListLBPrivateNetworksRequest{ + Zone: zone, + LBID: ID, + }, scw.WithContext(ctx)) + if err != nil { + if is404Error(err) { + return nil + } + return diag.FromErr(err) + } + _ = d.Set("private_network", flattenPrivateNetworkConfigs(resPN)) + return nil } @@ -190,10 +265,85 @@ func resourceScalewayLbUpdate(ctx context.Context, d *schema.ResourceData, meta } _, err = lbAPI.UpdateLB(req, scw.WithContext(ctx)) - if err != nil { + if err != nil && !is404Error(err) { return diag.FromErr(err) } } + //// + // Attach / Detach Private Networks + //// + if d.HasChangesExcept("private_network") { + retryInterval := DefaultWaitLBRetryInterval + // check that pns are in a stable state + pns, err := lbAPI.WaitForLBPN(&lb.ZonedAPIWaitForLBPNRequest{ + Zone: zone, + LBID: ID, + Timeout: scw.TimeDurationPtr(defaultInstanceServerWaitTimeout), + RetryInterval: &retryInterval}, + scw.WithContext(ctx)) + if err != nil && !is404Error(err) { + return diag.FromErr(err) + } + // select only private networks that has change + pnToDetach, err := privateNetworksToDetach(pns, d.Get("private_network")) + if err != nil { + diag.FromErr(err) + } + // detach private networks + for pnID, detach := range pnToDetach { + if detach { + err = lbAPI.DetachPrivateNetwork(&lb.ZonedAPIDetachPrivateNetworkRequest{ + Zone: zone, + LBID: ID, + PrivateNetworkID: pnID, + }) + if err != nil && !is404Error(err) { + return diag.FromErr(err) + } + } + } + + //attach private network + pnConfigs, pnExist := d.GetOk("private_network") + if pnExist { + pnConfigs, err := expandPrivateNetworks(pnConfigs, ID) + if err != nil { + return diag.FromErr(err) + } + + for _, config := range pnConfigs { + // check private network is already in config + if detach, exist := pnToDetach[config.PrivateNetworkID]; exist && !detach { + continue + } + // check load balancer state + _, err = lbAPI.WaitForLb(&lb.ZonedAPIWaitForLBRequest{ + Zone: zone, + LBID: ID, + Timeout: scw.TimeDurationPtr(defaultInstanceServerWaitTimeout), + RetryInterval: &retryInterval, + }, scw.WithContext(ctx)) + if err != nil && !is404Error(err) { + return diag.FromErr(err) + } + // attach updated private networks + _, err := lbAPI.AttachPrivateNetwork(config, scw.WithContext(ctx)) + if err != nil && !is404Error(err) { + return diag.FromErr(err) + } + } + + _, err = lbAPI.WaitForLBPN(&lb.ZonedAPIWaitForLBPNRequest{ + Zone: zone, + LBID: ID, + Timeout: scw.TimeDurationPtr(defaultInstanceServerWaitTimeout), + RetryInterval: &retryInterval}, + scw.WithContext(ctx)) + if err != nil && !is404Error(err) { + return diag.FromErr(err) + } + } + } return resourceScalewayLbRead(ctx, d, meta) } @@ -204,17 +354,50 @@ func resourceScalewayLbDelete(ctx context.Context, d *schema.ResourceData, meta return diag.FromErr(err) } - _, err = lbAPI.WaitForLb(&lb.ZonedAPIWaitForLBRequest{ + // check if current lb is on stable state + retryInterval := DefaultWaitLBRetryInterval + currentLB, err := lbAPI.WaitForLb(&lb.ZonedAPIWaitForLBRequest{ LBID: ID, Zone: zone, Timeout: scw.TimeDurationPtr(LbWaitForTimeout), - RetryInterval: DefaultWaitRetryInterval, + RetryInterval: &retryInterval, }, scw.WithContext(ctx)) - if err != nil && !is404Error(err) { return diag.FromErr(err) } + if currentLB.PrivateNetworkCount != 0 { + lbPNs, err := lbAPI.ListLBPrivateNetworks(&lb.ZonedAPIListLBPrivateNetworksRequest{ + Zone: zone, + LBID: ID, + }, scw.WithContext(ctx)) + if err != nil && !is404Error(err) { + return diag.FromErr(err) + } + + // detach private networks + for _, pn := range lbPNs.PrivateNetwork { + err = lbAPI.DetachPrivateNetwork(&lb.ZonedAPIDetachPrivateNetworkRequest{ + Zone: zone, + LBID: ID, + PrivateNetworkID: pn.PrivateNetworkID, + }) + if err != nil && !is404Error(err) { + return diag.FromErr(err) + } + } + + _, err = lbAPI.WaitForLb(&lb.ZonedAPIWaitForLBRequest{ + LBID: ID, + Zone: zone, + Timeout: scw.TimeDurationPtr(LbWaitForTimeout), + RetryInterval: &retryInterval, + }, scw.WithContext(ctx)) + if err != nil && !is404Error(err) { + return diag.FromErr(err) + } + } + var releaseAddressValue bool releaseIPAddress, releaseIPPExist := d.GetOk("release_ip") if releaseIPPExist { @@ -226,7 +409,16 @@ func resourceScalewayLbDelete(ctx context.Context, d *schema.ResourceData, meta LBID: ID, ReleaseIP: releaseAddressValue, }, scw.WithContext(ctx)) + if err != nil && !is404Error(err) { + return diag.FromErr(err) + } + _, err = lbAPI.WaitForLb(&lb.ZonedAPIWaitForLBRequest{ + LBID: ID, + Zone: zone, + Timeout: scw.TimeDurationPtr(LbWaitForTimeout), + RetryInterval: &retryInterval, + }, scw.WithContext(ctx)) if err != nil && !is404Error(err) { return diag.FromErr(err) } diff --git a/scaleway/resource_lb_private_network.go b/scaleway/resource_lb_private_network.go deleted file mode 100644 index fb63bec921..0000000000 --- a/scaleway/resource_lb_private_network.go +++ /dev/null @@ -1,224 +0,0 @@ -package scaleway - -import ( - "context" - - "github.com/hashicorp/terraform-plugin-sdk/v2/diag" - "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" - "github.com/scaleway/scaleway-sdk-go/api/lb/v1" - "github.com/scaleway/scaleway-sdk-go/scw" -) - -func resourceScalewayLbPrivateNetwork() *schema.Resource { - return &schema.Resource{ - CreateContext: resourceScalewayLbPrivateNetworkCreate, - ReadContext: resourceScalewayLbPrivateNetworkRead, - DeleteContext: resourceScalewayLbPrivateNetworkDelete, - Importer: &schema.ResourceImporter{ - StateContext: schema.ImportStatePassthroughContext, - }, - Timeouts: &schema.ResourceTimeout{ - Default: schema.DefaultTimeout(defaultLbLbTimeout), - }, - SchemaVersion: 1, - StateUpgraders: []schema.StateUpgrader{ - {Version: 0, Type: lbUpgradeV1SchemaType(), Upgrade: lbUpgradeV1SchemaUpgradeFunc}, - }, - Schema: map[string]*schema.Schema{ - "lb_id": { - Type: schema.TypeString, - Required: true, - ForceNew: true, - ValidateFunc: validationUUIDorUUIDWithLocality(), - Description: "The load-balancer ID", - }, - "private_network_id": { - Type: schema.TypeString, - Required: true, - ForceNew: true, - ValidateFunc: validationUUIDorUUIDWithLocality(), - Description: "The Private Network ID", - }, - "static_config": { - ConflictsWith: []string{"dhcp_config"}, - Description: "Define two local IP addresses of your choice for each load balancer instance", - Type: schema.TypeList, - Optional: true, - Computed: true, - ForceNew: true, - Elem: &schema.Schema{ - Type: schema.TypeString, - ValidateFunc: validation.IsIPAddress, - }, - }, - "dhcp_config": { - ConflictsWith: []string{"static_config"}, - Description: "Set to true if you want to let DHCP assign IP addresses", - Type: schema.TypeBool, - Optional: true, - Computed: true, - ForceNew: true, - }, - // Readonly attributes - "status": { - Type: schema.TypeString, - Computed: true, - Description: "The status of private network connection", - }, - }, - } -} - -func resourceScalewayLbPrivateNetworkCreate(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { - lbAPI, _, err := lbAPIWithZone(d, meta) - if err != nil { - return diag.FromErr(err) - } - - zone, lbID, err := parseZonedID(d.Get("lb_id").(string)) - if err != nil { - return diag.FromErr(err) - } - - zonePN, pnID, err := parseZonedID(d.Get("private_network_id").(string)) - if err != nil { - return diag.FromErr(err) - } - - if zonePN != zone { - return diag.Errorf("LB and Private Network must be in the same zone (got %s and %s)", zone, zonePN) - } - - retryInterval := DefaultWaitLBRetryInterval - _, err = lbAPI.WaitForLb(&lb.ZonedAPIWaitForLBRequest{ - Zone: zone, - LBID: lbID, - Timeout: scw.TimeDurationPtr(defaultInstanceServerWaitTimeout), - RetryInterval: &retryInterval, - }, scw.WithContext(ctx)) - if err != nil && !is404Error(err) { - return diag.FromErr(err) - } - - createReq := &lb.ZonedAPIAttachPrivateNetworkRequest{ - Zone: zone, - LBID: lbID, - PrivateNetworkID: pnID, - } - - createReq.DHCPConfig = expandLbPrivateNetworkDHCPConfig(d.Get("dhcp_config")) - - staticConfig, staticConfigExist := d.GetOk("static_config") - if staticConfigExist { - createReq.StaticConfig = expandLbPrivateNetworkStaticConfig(staticConfig) - } - - res, err := lbAPI.AttachPrivateNetwork(createReq, scw.WithContext(ctx)) - if err != nil { - return diag.FromErr(err) - } - - _, err = lbAPI.WaitForLb(&lb.ZonedAPIWaitForLBRequest{ - Zone: zone, - LBID: lbID, - Timeout: scw.TimeDurationPtr(defaultInstanceServerWaitTimeout), - RetryInterval: &retryInterval, - }, scw.WithContext(ctx)) - if err != nil && !is404Error(err) { - return diag.FromErr(err) - } - - d.SetId(newZonedIDString(zone, res.PrivateNetworkID)) - _ = d.Set("status", res.Status) - - return resourceScalewayLbPrivateNetworkRead(ctx, d, meta) -} - -func resourceScalewayLbPrivateNetworkRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { - lbAPI, zone, pnID, err := lbAPIWithZoneAndID(meta, d.Get("private_network_id").(string)) - if err != nil { - return diag.FromErr(err) - } - - _, lbID, err := parseZonedID(d.Get("lb_id").(string)) - if err != nil { - return diag.FromErr(err) - } - - res, err := lbAPI.ListLBPrivateNetworks(&lb.ZonedAPIListLBPrivateNetworksRequest{ - Zone: zone, - LBID: lbID, - }, scw.WithContext(ctx)) - if err != nil { - if is404Error(err) { - _ = d.Set("lb_id", "") - return nil - } - return diag.FromErr(err) - } - - pn := findPn(res.PrivateNetwork, pnID) - if pn == nil { - d.SetId("") - return nil - } - - if pn.DHCPConfig != nil { - _ = d.Set("dhcp_config", true) - } - _ = d.Set("static_config", flattenLbPrivateNetworkStaticConfig(pn.StaticConfig)) - _ = d.Set("lb_id", newZonedIDString(zone, pn.LB.ID)) - _ = d.Set("private_network_id", newZonedIDString(zone, pn.PrivateNetworkID)) - _ = d.Set("status", pn.Status) - - return nil -} - -func findPn(privateNetworks []*lb.PrivateNetwork, id string) *lb.PrivateNetwork { - for _, pn := range privateNetworks { - if pn.PrivateNetworkID == id { - return pn - } - } - - return nil -} - -func resourceScalewayLbPrivateNetworkDelete(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { - lbAPI, zone, pnID, err := lbAPIWithZoneAndID(meta, d.Get("private_network_id").(string)) - if err != nil { - return diag.FromErr(err) - } - - _, lbID, err := parseZonedID(d.Get("lb_id").(string)) - if err != nil { - return diag.FromErr(err) - } - - err = lbAPI.DetachPrivateNetwork(&lb.ZonedAPIDetachPrivateNetworkRequest{ - Zone: zone, - LBID: lbID, - PrivateNetworkID: pnID, - }) - if err != nil { - if is404Error(err) || is403Error(err) { - d.SetId("") - return nil - } - return diag.FromErr(err) - } - - retryInterval := DefaultWaitLBRetryInterval - _, err = lbAPI.WaitForLb(&lb.ZonedAPIWaitForLBRequest{ - Zone: zone, - LBID: lbID, - Timeout: scw.TimeDurationPtr(defaultInstanceServerWaitTimeout), - RetryInterval: &retryInterval, - }, scw.WithContext(ctx)) - if err != nil && !is404Error(err) { - return diag.FromErr(err) - } - - return nil -} diff --git a/scaleway/resource_lb_private_network_test.go b/scaleway/resource_lb_private_network_test.go deleted file mode 100644 index 280b7ec63c..0000000000 --- a/scaleway/resource_lb_private_network_test.go +++ /dev/null @@ -1,288 +0,0 @@ -package scaleway - -import ( - "fmt" - "testing" - - "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" - "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" - "github.com/scaleway/scaleway-sdk-go/api/lb/v1" -) - -func init() { - resource.AddTestSweepers("scaleway_lb_private_network", &resource.Sweeper{ - Name: "scaleway_lb_private_network", - Dependencies: []string{"scaleway_lb", "scaleway_lb_ip", "scaleway_vpc"}, - }) -} - -func TestAccScalewayLbPrivateNetwork_Basic(t *testing.T) { - tt := NewTestTools(t) - defer tt.Cleanup() - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { testAccPreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: testAccCheckScalewayLbPrivateNetworkDestroy(tt), - Steps: []resource.TestStep{ - { - Config: ` - resource scaleway_vpc_private_network pn01 { - name = "test-lb-pn" - } - `, - Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttrSet("scaleway_vpc_private_network.pn01", "name"), - ), - }, - { - Config: ` - resource scaleway_vpc_private_network pn01 { - name = "test-lb-pn" - } - - resource scaleway_lb_ip ip01 {} - - resource scaleway_lb "default" { - ip_id = scaleway_lb_ip.ip01.id - name = "test-lb" - type = "lb-s" - } - `, - Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttrSet("scaleway_lb.default", "ip_id"), - resource.TestCheckResourceAttrSet("scaleway_lb_ip.ip01", "id"), - ), - }, - { - Config: ` - resource scaleway_vpc_private_network pn01 { - name = "test-lb-pn" - } - - resource scaleway_lb_ip ip01 {} - - resource scaleway_lb "default" { - ip_id = scaleway_lb_ip.ip01.id - name = "test-lb" - type = "lb-s" - release_ip = true - } - - resource scaleway_lb_private_network lb01pn01 { - lb_id = scaleway_lb.default.id - private_network_id = scaleway_vpc_private_network.pn01.id - static_config = ["172.16.0.100", "172.16.0.101"] - } - `, - Check: resource.ComposeTestCheckFunc( - testAccCheckScalewayLbPrivateNetworkExists(tt, "scaleway_lb_private_network.lb01pn01"), - resource.TestCheckResourceAttr("scaleway_lb_private_network.lb01pn01", - "static_config.0", "172.16.0.100"), - resource.TestCheckResourceAttr("scaleway_lb_private_network.lb01pn01", - "static_config.1", "172.16.0.101"), - ), - }, - { - Config: ` - resource scaleway_vpc_private_network pn01 { - name = "test-lb-pn" - } - - resource scaleway_lb_ip ip01 {} - - resource scaleway_lb "default" { - ip_id = scaleway_lb_ip.ip01.id - name = "test-lb2" - type = "lb-s" - } - `, - Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttrSet("scaleway_lb.default", "name"), - resource.TestCheckResourceAttrSet("scaleway_lb_ip.ip01", "id"), - ), - }, - { - Config: ` - resource scaleway_vpc_private_network pn01 { - name = "test-lb-without-attachment" - } - - resource scaleway_lb_ip ip01 {} - `, - Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttrSet("scaleway_lb_ip.ip01", "id"), - ), - }, - }, - }) -} - -func TestAccScalewayLbPrivateNetwork_DHCP(t *testing.T) { - tt := NewTestTools(t) - defer tt.Cleanup() - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { testAccPreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: testAccCheckScalewayLbPrivateNetworkDestroy(tt), - Steps: []resource.TestStep{ - { - Config: ` - resource scaleway_vpc_private_network pn02 { - name = "test-lb-pn-with-dhcp" - } - `, - Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttrSet("scaleway_vpc_private_network.pn02", "name"), - ), - }, - { - Config: ` - resource scaleway_vpc_private_network pn02 { - name = "test-lb-pn-with-dhcp" - } - - resource scaleway_lb_ip ip02 {} - - resource scaleway_lb lb02 { - ip_id = scaleway_lb_ip.ip02.id - name = "test-lb-with-dhcp" - type = "lb-s" - } - `, - Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttr("scaleway_vpc_private_network.pn02", "name", "test-lb-pn-with-dhcp"), - ), - }, - { - Config: ` - resource scaleway_vpc_private_network pn02 { - name = "test-lb-pn-with-dhcp" - } - - resource scaleway_lb_ip ip02 {} - - resource scaleway_lb lb02 { - ip_id = scaleway_lb_ip.ip02.id - name = "test-lb-with-dhcp" - type = "lb-s" - release_ip = true - } - - resource scaleway_lb_private_network lb02pn01 { - lb_id = scaleway_lb.lb02.id - private_network_id = scaleway_vpc_private_network.pn02.id - dhcp_config = true - } - `, - Check: resource.ComposeTestCheckFunc( - testAccCheckScalewayLbPrivateNetworkExists(tt, "scaleway_lb_private_network.lb02pn01"), - resource.TestCheckResourceAttrSet("scaleway_vpc_private_network.pn02", "name"), - resource.TestCheckResourceAttr("scaleway_lb_private_network.lb02pn01", "dhcp_config", "true"), - ), - }, - { - Config: ` - resource scaleway_vpc_private_network pn02 { - name = "test-lb-pn-with-dhcp" - } - - resource scaleway_lb_ip ip02 {} - - resource scaleway_lb lb02 { - ip_id = scaleway_lb_ip.ip02.id - name = "test-lb-with-dhcp" - type = "lb-s" - } - `, - Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttr("scaleway_vpc_private_network.pn02", "name", "test-lb-pn-with-dhcp"), - resource.TestCheckResourceAttrSet("scaleway_lb_ip.ip02", "id"), - resource.TestCheckResourceAttrSet("scaleway_lb.lb02", "ip_id"), - ), - }, - { - Config: ` - resource scaleway_vpc_private_network pn02 { - name = "test-lb-pn-with-dhcp" - } - - resource scaleway_lb_ip ip02 {} - `, - Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttr("scaleway_vpc_private_network.pn02", "name", "test-lb-pn-with-dhcp"), - resource.TestCheckResourceAttrSet("scaleway_lb_ip.ip02", "id"), - ), - }, - }, - }) -} - -func getLbPrivateNetwork(tt *TestTools, rs *terraform.ResourceState) (*lb.PrivateNetwork, error) { - lbID := rs.Primary.Attributes["lb_id"] - pnID := rs.Primary.Attributes["private_network_id"] - - lbAPI, zone, pnID, err := lbAPIWithZoneAndID(tt.Meta, pnID) - if err != nil { - return nil, err - } - - _, lbID, err = parseZonedID(lbID) - if err != nil { - return nil, fmt.Errorf("invalid resource: %s", err) - } - - listPN, err := lbAPI.ListLBPrivateNetworks(&lb.ZonedAPIListLBPrivateNetworksRequest{ - LBID: lbID, - Zone: zone, - }) - if err != nil { - return nil, err - } - - for _, pn := range listPN.PrivateNetwork { - if pn.PrivateNetworkID == pnID { - return pn, nil - } - } - - return nil, fmt.Errorf("private network %s not found", pnID) -} - -func testAccCheckScalewayLbPrivateNetworkExists(tt *TestTools, n string) resource.TestCheckFunc { - return func(s *terraform.State) error { - rs, ok := s.RootModule().Resources[n] - if !ok { - return fmt.Errorf("resource not found: %s", n) - } - pn, err := getLbPrivateNetwork(tt, rs) - if err != nil { - return err - } - if pn == nil { - return fmt.Errorf("resource not found: %s", rs.Primary.Attributes["private_network_id"]) - } - - return nil - } -} - -func testAccCheckScalewayLbPrivateNetworkDestroy(tt *TestTools) resource.TestCheckFunc { - return func(state *terraform.State) error { - for _, rs := range state.RootModule().Resources { - if rs.Type != "scaleway_lb_private_network" { - continue - } - - pn, err := getLbPrivateNetwork(tt, rs) - if err != nil { - return err - } - - if pn != nil { - return fmt.Errorf("LB PN (%s) still exists", rs.Primary.Attributes["private_network_id"]) - } - } - - return nil - } -} diff --git a/scaleway/resource_lb_test.go b/scaleway/resource_lb_test.go index 0f2de3bbf8..aeda3c2e73 100644 --- a/scaleway/resource_lb_test.go +++ b/scaleway/resource_lb_test.go @@ -58,24 +58,215 @@ func TestAccScalewayLbLb_WithIP(t *testing.T) { Config: ` resource scaleway_lb_ip ip01 { } + + resource scaleway_vpc_private_network pnLB01 { + name = "test-lb-with-pn-dhcp" + } resource scaleway_lb lb01 { ip_id = scaleway_lb_ip.ip01.id - name = "test-lb" + name = "test-lb-with-dhcp-1" type = "LB-S" - release_ip = true + release_ip = false + private_network { + private_network_id = scaleway_vpc_private_network.pnLB01.id + dhcp_config = true + } } `, Check: resource.ComposeTestCheckFunc( testAccCheckScalewayLbExists(tt, "scaleway_lb.lb01"), testAccCheckScalewayLbIPExists(tt, "scaleway_lb_ip.ip01"), - resource.TestCheckResourceAttr("scaleway_lb.lb01", "name", "test-lb"), - resource.TestCheckResourceAttr("scaleway_lb.lb01", "release_ip", "true"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", "name", "test-lb-with-dhcp-1"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", "release_ip", "false"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", "private_network.0.dhcp_config", "true"), testCheckResourceAttrUUID("scaleway_lb.lb01", "ip_id"), testCheckResourceAttrIPv4("scaleway_lb.lb01", "ip_address"), resource.TestCheckResourceAttrPair("scaleway_lb.lb01", "ip_id", "scaleway_lb_ip.ip01", "id"), ), }, + { + Config: ` + resource scaleway_lb_ip ip01 { + } + + resource scaleway_vpc_private_network pnLB01 { + name = "pn-with-lb-static" + } + + resource scaleway_lb lb01 { + ip_id = scaleway_lb_ip.ip01.id + name = "test-lb-with-pn-static-2" + type = "LB-S" + release_ip = false + private_network { + private_network_id = scaleway_vpc_private_network.pnLB01.id + static_config = ["172.16.0.100", "172.16.0.101"] + } + } + `, + Check: resource.ComposeTestCheckFunc( + testAccCheckScalewayLbIPExists(tt, "scaleway_lb_ip.ip01"), + resource.TestCheckResourceAttrSet("scaleway_vpc_private_network.pnLB01", "name"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", + "private_network.0.static_config.0", "172.16.0.100"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", + "private_network.0.static_config.1", "172.16.0.101"), + ), + }, + { + Config: ` + resource scaleway_lb_ip ip01 { + } + + resource scaleway_vpc_private_network pnLB01 { + name = "pn-with-lb-to-add" + } + + resource scaleway_vpc_private_network pnLB02 { + name = "pn-with-lb-to-add" + } + + resource scaleway_lb lb01 { + ip_id = scaleway_lb_ip.ip01.id + name = "test-lb-with-static-to-update-with-two-pn-3" + type = "LB-S" + release_ip = false + private_network { + private_network_id = scaleway_vpc_private_network.pnLB01.id + static_config = ["172.16.0.100", "172.16.0.101"] + } + + private_network { + private_network_id = scaleway_vpc_private_network.pnLB02.id + static_config = ["172.16.0.105", "172.16.0.106"] + } + } + `, + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttrSet("scaleway_vpc_private_network.pnLB01", "name"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", "private_network.#", "2"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", + "private_network.0.static_config.0", "172.16.0.100"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", + "private_network.0.static_config.1", "172.16.0.101"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", + "private_network.1.static_config.0", "172.16.0.105"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", + "private_network.1.static_config.1", "172.16.0.106"), + ), + }, + { + Config: ` + resource scaleway_lb_ip ip01 { + } + + resource scaleway_vpc_private_network pnLB01 { + name = "pn-with-lb-to-add" + } + + resource scaleway_vpc_private_network pnLB02 { + name = "pn-with-lb-to-add" + } + + resource scaleway_lb lb01 { + ip_id = scaleway_lb_ip.ip01.id + name = "test-lb-with-static-to-update-with-two-pn-4" + type = "LB-S" + release_ip = false + private_network { + private_network_id = scaleway_vpc_private_network.pnLB01.id + static_config = ["172.16.0.100", "172.16.0.101"] + } + + private_network { + private_network_id = scaleway_vpc_private_network.pnLB02.id + static_config = ["172.16.0.105", "172.16.0.107"] + } + } + `, + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttrSet("scaleway_vpc_private_network.pnLB01", "name"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", "private_network.#", "2"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", + "private_network.0.static_config.0", "172.16.0.100"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", + "private_network.0.static_config.1", "172.16.0.101"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", + "private_network.1.static_config.0", "172.16.0.105"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", + "private_network.1.static_config.1", "172.16.0.107"), + ), + }, + { + Config: ` + resource scaleway_lb_ip ip01 { + } + + resource scaleway_vpc_private_network pnLB01 { + name = "pn-with-lb-detached" + } + + resource scaleway_vpc_private_network pnLB02 { + name = "pn-with-lb-detached" + } + + resource scaleway_lb lb01 { + ip_id = scaleway_lb_ip.ip01.id + name = "test-lb-with-only-one-pn-is-conserved-5" + type = "LB-S" + release_ip = false + private_network { + private_network_id = scaleway_vpc_private_network.pnLB01.id + static_config = ["172.16.0.100", "172.16.0.101"] + } + } + `, + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttrSet("scaleway_vpc_private_network.pnLB01", "name"), + resource.TestCheckResourceAttrSet("scaleway_vpc_private_network.pnLB02", "name"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", "private_network.#", "1"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", "private_network.0.static_config.0", "172.16.0.100"), + resource.TestCheckResourceAttr("scaleway_lb.lb01", "private_network.0.static_config.1", "172.16.0.101"), + ), + }, + { + Config: ` + resource scaleway_lb_ip ip01 { + } + + resource scaleway_vpc_private_network pnLB01 { + name = "pn-with-lb-detached" + } + + resource scaleway_vpc_private_network pnLB02 { + name = "pn-with-lb-detached" + } + `, + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttrSet("scaleway_vpc_private_network.pnLB01", "name"), + resource.TestCheckResourceAttrSet("scaleway_vpc_private_network.pnLB02", "name"), + ), + }, + { + Config: ` + resource scaleway_lb_ip ip01 { + } + + resource scaleway_vpc_private_network pnLB01 { + name = "pn-with-lb-detached" + } + + resource scaleway_vpc_private_network pnLB02 { + name = "pn-with-lb-detached" + } + `, + Check: resource.ComposeTestCheckFunc( + testAccCheckScalewayLbIPExists(tt, "scaleway_lb_ip.ip01"), + resource.TestCheckResourceAttrSet("scaleway_vpc_private_network.pnLB02", "name"), + resource.TestCheckResourceAttrSet("scaleway_vpc_private_network.pnLB01", "name"), + ), + }, { Config: ` resource scaleway_lb_ip ip01 { diff --git a/scaleway/testdata/data-source-lb-basic.cassette.yaml b/scaleway/testdata/data-source-lb-basic.cassette.yaml index 8a32bb2a2f..0bba286e2d 100644 --- a/scaleway/testdata/data-source-lb-basic.cassette.yaml +++ b/scaleway/testdata/data-source-lb-basic.cassette.yaml @@ -8,20 +8,21 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "278" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:44 GMT + - Thu, 04 Nov 2021 13:21:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -31,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9c8267f-2ef3-4a9d-9c42-dea11de77cda + - a13e745c-3190-43ad-b176-ee73d6dbe2c3 status: 200 OK code: 200 duration: "" @@ -40,20 +41,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/75956232-5ef3-478a-941a-f39a9deef55a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "278" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:44 GMT + - Thu, 04 Nov 2021 13:21:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -63,31 +65,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c5d1ad0-e091-4fa2-8c42-af3f6de8697e + - 41ee1593-c354-43a4-b40b-c3d14fdc59df status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","name":"test-lb","description":"","ip_id":"75956232-5ef3-478a-941a-f39a9deef55a","tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' + body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","name":"test-lb","description":"","ip_id":"a7972715-724c-448c-85b2-640ffc655a09","tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761857961Z","updated_at":"2021-09-16T13:11:44.761857961Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612519825Z","updated_at":"2021-11-04T13:21:52.612519825Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "856" + - "858" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:44 GMT + - Thu, 04 Nov 2021 13:21:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -97,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 049157ff-9be5-4322-8262-108c62b08ee2 + - 62a9e4d7-2f62-499e-b656-b94f1180b4d1 status: 200 OK code: 200 duration: "" @@ -106,20 +109,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b05eba29-85c3-418a-8156-3579bf7147f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd method: GET response: - body: '{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"pending","instances":[{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"unknown","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.015577Z","region":"fr-par","zone":"fr-par-1"},{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"unknown","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.019467Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:45.032464Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:52.612520Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1279" + - "852" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:45 GMT + - Thu, 04 Nov 2021 13:21:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -129,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70eb6de4-5d25-4029-a4d1-319c2705160a + - c8ae7cf2-b10c-42c4-adc6-31fdd7c55788 status: 200 OK code: 200 duration: "" @@ -138,11 +142,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b05eba29-85c3-418a-8156-3579bf7147f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd method: GET response: - body: '{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"ready","instances":[{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"},{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:46.152242Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"},{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1273" @@ -151,7 +156,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:47 GMT + - Thu, 04 Nov 2021 13:22:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -161,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2c1360f-15b7-476e-af6d-420d391735ca + - 41e524b0-b9d7-4b08-8764-d429e8988b12 status: 200 OK code: 200 duration: "" @@ -170,11 +175,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b05eba29-85c3-418a-8156-3579bf7147f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd method: GET response: - body: '{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"ready","instances":[{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"},{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:46.152242Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"},{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1273" @@ -183,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:47 GMT + - Thu, 04 Nov 2021 13:22:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -193,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1aed5b7d-cc8a-4a3d-95eb-180227e912bf + - 9056e2d4-f800-4594-8cc9-2862d9ac2acc status: 200 OK code: 200 duration: "" @@ -202,11 +208,78 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:22:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f6a4edab-7fe8-426e-95e0-b35313b248ce + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd + method: GET + response: + body: '{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"},{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1273" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:22:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7d371061-672e-45b0-a1d4-d4e231563472 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?name=test-lb&order_by=created_at_asc method: GET response: - body: '{"lbs":[{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"ready","instances":[{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"},{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:46.152242Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}],"total_count":1}' + body: '{"lbs":[{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"},{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "1299" @@ -215,7 +288,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:47 GMT + - Thu, 04 Nov 2021 13:22:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -225,7 +298,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 854534d0-511e-4716-9064-d44969d44cfa + - b73f0ea9-a70c-496d-bfab-f837b960aeac status: 200 OK code: 200 duration: "" @@ -234,20 +307,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b05eba29-85c3-418a-8156-3579bf7147f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"ready","instances":[{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"},{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:46.152242Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1273" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:47 GMT + - Thu, 04 Nov 2021 13:22:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -257,7 +331,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35e0b8cc-3296-4eb0-8428-07de0ff7a049 + - 5468c9b2-651a-42db-8773-9605f6c53ea0 status: 200 OK code: 200 duration: "" @@ -266,11 +340,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b05eba29-85c3-418a-8156-3579bf7147f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd method: GET response: - body: '{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"ready","instances":[{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"},{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:46.152242Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"},{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1273" @@ -279,7 +354,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:47 GMT + - Thu, 04 Nov 2021 13:22:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -289,7 +364,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8dedf39-ab84-49d3-a51e-d75a77e1a3f7 + - 77920782-7948-44b8-a5b2-6370603f4bc8 status: 200 OK code: 200 duration: "" @@ -298,11 +373,45 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b05eba29-85c3-418a-8156-3579bf7147f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"ready","instances":[{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"},{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:46.152242Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:22:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 79583549-1d4e-4486-a0b1-532537ae0ecd + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd + method: GET + response: + body: '{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"},{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1273" @@ -311,7 +420,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:47 GMT + - Thu, 04 Nov 2021 13:22:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -321,7 +430,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ceb81ba-dd7e-4b04-ba6d-895590d09ada + - 0b59acec-ce9b-461a-979d-788c735c1741 status: 200 OK code: 200 duration: "" @@ -330,11 +439,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b05eba29-85c3-418a-8156-3579bf7147f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd method: GET response: - body: '{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"ready","instances":[{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"},{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:46.152242Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"},{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1273" @@ -343,7 +453,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:47 GMT + - Thu, 04 Nov 2021 13:22:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -353,7 +463,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 400a72ca-0cb9-40be-9b8c-657ed9956ecf + - eef458fa-2286-4ead-a2ea-546a203a80e6 status: 200 OK code: 200 duration: "" @@ -362,11 +472,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b05eba29-85c3-418a-8156-3579bf7147f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd method: GET response: - body: '{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"ready","instances":[{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"},{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:46.152242Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"},{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1273" @@ -375,7 +486,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:48 GMT + - Thu, 04 Nov 2021 13:22:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -385,7 +496,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96bb43c8-dfd7-440b-b3a0-8006cb318332 + - 384f00bd-ddd3-475a-a0b4-f88cf2b1765b status: 200 OK code: 200 duration: "" @@ -394,11 +505,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?name=test-lb&order_by=created_at_asc method: GET response: - body: '{"lbs":[{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"ready","instances":[{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"},{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:46.152242Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}],"total_count":1}' + body: '{"lbs":[{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"},{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "1299" @@ -407,7 +519,40 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:48 GMT + - Thu, 04 Nov 2021 13:22:24 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 38c60735-1736-419d-9768-c4af31b1c80e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:22:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -417,7 +562,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed1f164d-eaa0-41fb-aa68-ca2337a2589c + - dab2ea8e-0b98-458a-9a8f-3001cad5c5fd status: 200 OK code: 200 duration: "" @@ -426,11 +571,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b05eba29-85c3-418a-8156-3579bf7147f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd method: GET response: - body: '{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"ready","instances":[{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"},{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:46.152242Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"},{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1273" @@ -439,7 +585,40 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:48 GMT + - Thu, 04 Nov 2021 13:22:24 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 368b4b01-d27b-44b2-81f6-0f20be78dd16 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:22:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -449,7 +628,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df4cf6c2-d07c-4bd7-8f5c-f721af6d0ded + - 9eb43be6-702f-418c-b339-f74834368a1c status: 200 OK code: 200 duration: "" @@ -458,20 +637,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/75956232-5ef3-478a-941a-f39a9deef55a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "312" + - "314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:48 GMT + - Thu, 04 Nov 2021 13:22:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -481,7 +661,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82ee28e4-74cf-4b52-830b-bdf9cfdb6116 + - 243ce519-3125-4d04-be3d-02a7122f4881 status: 200 OK code: 200 duration: "" @@ -490,11 +670,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b05eba29-85c3-418a-8156-3579bf7147f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd method: GET response: - body: '{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"ready","instances":[{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"},{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:46.152242Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"},{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1273" @@ -503,7 +684,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:48 GMT + - Thu, 04 Nov 2021 13:22:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -513,7 +694,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e1fd488-01de-47fa-a24c-c57cd2a149de + - def15718-57a8-4053-87e6-b0240dfd752a status: 200 OK code: 200 duration: "" @@ -522,11 +703,45 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:22:25 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9b6b47b5-7096-43cf-a775-2fbb04fb44e6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?name=test-lb&order_by=created_at_asc method: GET response: - body: '{"lbs":[{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"ready","instances":[{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"},{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:46.152242Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}],"total_count":1}' + body: '{"lbs":[{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"},{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "1299" @@ -535,7 +750,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:48 GMT + - Thu, 04 Nov 2021 13:22:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -545,7 +760,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f5b3fe7-c066-4e47-8eb0-865e6a00aa38 + - 441a1ba5-c403-4d80-9ffd-8a95159f9237 status: 200 OK code: 200 duration: "" @@ -554,11 +769,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b05eba29-85c3-418a-8156-3579bf7147f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd method: GET response: - body: '{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"ready","instances":[{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"},{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:46.152242Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"},{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1273" @@ -567,7 +783,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:48 GMT + - Thu, 04 Nov 2021 13:22:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -577,7 +793,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63aa3f6d-fca3-4c2c-b2d9-51e186abea34 + - aa403225-bfe2-43ef-93b3-65e5eee87669 status: 200 OK code: 200 duration: "" @@ -586,11 +802,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b05eba29-85c3-418a-8156-3579bf7147f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd method: GET response: - body: '{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"ready","instances":[{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"},{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:46.152242Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"},{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1273" @@ -599,7 +816,73 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:48 GMT + - Thu, 04 Nov 2021 13:22:25 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 81466fc8-af05-4fa5-8b5f-0eff48e3e61b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:22:25 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 193d2d5b-1318-4238-ba76-24bf973b3de0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:22:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -609,7 +892,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e96967f2-b3ba-4020-a839-9033a9e365b3 + - f4bda262-d751-4eaf-b008-6e6ea2a87b9c status: 200 OK code: 200 duration: "" @@ -618,11 +901,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?name=test-lb&order_by=created_at_asc method: GET response: - body: '{"lbs":[{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"ready","instances":[{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"},{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:46.152242Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}],"total_count":1}' + body: '{"lbs":[{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"},{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "1299" @@ -631,7 +915,73 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:48 GMT + - Thu, 04 Nov 2021 13:22:25 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1523aa9f-2d05-4408-8170-6b40875d2e55 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd + method: GET + response: + body: '{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"},{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1273" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:22:25 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2046ffff-fd2a-4062-afc5-53474769e8d9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:22:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -641,7 +991,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d54b6f8-60c1-4f9b-94ba-d36bf19ac2e6 + - 6e856f12-c298-4531-bada-81e7913f48f8 status: 200 OK code: 200 duration: "" @@ -650,11 +1000,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b05eba29-85c3-418a-8156-3579bf7147f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd method: GET response: - body: '{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"ready","instances":[{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"},{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:46.152242Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"},{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1273" @@ -663,7 +1014,40 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:48 GMT + - Thu, 04 Nov 2021 13:22:26 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7f6ddae5-2c9a-49ab-8c9f-64c8b92a4ded + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:22:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -673,7 +1057,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 696904c8-8560-4ae2-ac60-e6e19fa040fe + - 146936eb-5a0c-4f8c-8f19-0e9a8e507b38 status: 200 OK code: 200 duration: "" @@ -682,11 +1066,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b05eba29-85c3-418a-8156-3579bf7147f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd method: GET response: - body: '{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"ready","instances":[{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"},{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:46.152242Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"ready","instances":[{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"},{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:21:53.960751Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1273" @@ -695,7 +1080,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:48 GMT + - Thu, 04 Nov 2021 13:22:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -705,7 +1090,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 367b6fef-eb51-4563-a656-57aca0f8f9eb + - 93528590-5ddb-4419-916a-03fc6484ca5f status: 200 OK code: 200 duration: "" @@ -714,8 +1099,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b05eba29-85c3-418a-8156-3579bf7147f8?release_ip=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd?release_ip=false method: DELETE response: body: "" @@ -725,7 +1111,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:49 GMT + - Thu, 04 Nov 2021 13:22:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -735,7 +1121,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c86d0030-8e50-4d25-9090-1bd017ee3620 + - b8ce1af5-040e-4a14-9182-d9920f659a20 status: 204 No Content code: 204 duration: "" @@ -744,11 +1130,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b05eba29-85c3-418a-8156-3579bf7147f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd method: GET response: - body: '{"id":"b05eba29-85c3-418a-8156-3579bf7147f8","name":"test-lb","description":"","status":"pending","instances":[{"id":"888aedf1-8b82-4a81-947f-7f62148da98f","status":"ready","ip_address":"10.69.124.117","created_at":"2021-09-16T13:10:14.062471Z","updated_at":"2021-09-16T13:11:45.288742Z","region":"fr-par","zone":"fr-par-1"},{"id":"5c3dc614-466a-4b58-a9a3-6825cc92d1a5","status":"ready","ip_address":"10.71.2.123","created_at":"2021-09-16T13:08:11.431258Z","updated_at":"2021-09-16T13:11:45.789196Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"75956232-5ef3-478a-941a-f39a9deef55a","ip_address":"51.159.10.230","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b05eba29-85c3-418a-8156-3579bf7147f8","reverse":"51-159-10-230.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-09-16T13:11:44.761858Z","updated_at":"2021-09-16T13:11:49.458769Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d2455599-69f3-4649-9629-de3ed63868dd","name":"test-lb","description":"","status":"pending","instances":[{"id":"b824e12e-be8b-437d-8273-815ec6ba4deb","status":"ready","ip_address":"10.64.26.97","created_at":"2021-11-04T13:06:27.465795Z","updated_at":"2021-11-04T13:21:53.053890Z","region":"fr-par","zone":"fr-par-1"},{"id":"611bf5d6-5446-4bdb-b738-4cb2b0395d21","status":"ready","ip_address":"10.69.48.33","created_at":"2021-11-04T13:08:30.805047Z","updated_at":"2021-11-04T13:21:53.673418Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d2455599-69f3-4649-9629-de3ed63868dd","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:21:52.612520Z","updated_at":"2021-11-04T13:22:26.752384Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1275" @@ -757,7 +1144,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:49 GMT + - Thu, 04 Nov 2021 13:22:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -767,7 +1154,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0256554a-5fa4-49da-911e-3e1f37115bd9 + - f5b8789c-fef8-41d8-8a9a-aee6270f1f2c status: 200 OK code: 200 duration: "" @@ -776,8 +1163,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b05eba29-85c3-418a-8156-3579bf7147f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d2455599-69f3-4649-9629-de3ed63868dd method: GET response: body: '{"message":"lbs not Found"}' @@ -789,7 +1177,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:51 GMT + - Thu, 04 Nov 2021 13:22:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -799,7 +1187,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4af1a21d-399d-4d5d-b7c8-539cee1f11a2 + - f18f4c79-e57a-4ffa-a205-7b001054b280 status: 404 Not Found code: 404 duration: "" @@ -808,8 +1196,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/75956232-5ef3-478a-941a-f39a9deef55a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: DELETE response: body: "" @@ -819,7 +1208,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:52 GMT + - Thu, 04 Nov 2021 13:22:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -829,7 +1218,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b04ec587-a281-4697-b1b7-5c5786c89fe8 + - d5400fe8-69a2-4cb3-b0fe-d972db560e36 status: 204 No Content code: 204 duration: "" @@ -838,8 +1227,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/75956232-5ef3-478a-941a-f39a9deef55a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: body: '{"message":"ips not Found"}' @@ -851,7 +1241,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Sep 2021 13:11:52 GMT + - Thu, 04 Nov 2021 13:22:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -861,7 +1251,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96ec19f8-743f-46ee-be11-08e7f74b2449 + - 021bdec6-4936-42f6-a6a1-7394a33df4cd status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/data-source-lbip-basic.cassette.yaml b/scaleway/testdata/data-source-lbip-basic.cassette.yaml index 0adb85f498..662db23043 100644 --- a/scaleway/testdata/data-source-lbip-basic.cassette.yaml +++ b/scaleway/testdata/data-source-lbip-basic.cassette.yaml @@ -2,18 +2,18 @@ version: 1 interactions: - request: - body: '{"project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","reverse":null}' + body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","reverse":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6","ip_address":"195.154.68.193","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"195-154-68-193.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "280" @@ -22,7 +22,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:43 GMT + - Thu, 04 Nov 2021 13:23:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82e3a9fb-5b19-4f5f-bd4d-16288edc6db3 + - 0f834826-11a8-4e41-b575-855bf84cfaa2 status: 200 OK code: 200 duration: "" @@ -41,12 +41,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6","ip_address":"195.154.68.193","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"195-154-68-193.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "280" @@ -55,7 +55,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:43 GMT + - Thu, 04 Nov 2021 13:23:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,7 +65,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57306218-9f5f-4b29-8346-fbb9cb762b6e + - 3fdce8f1-1d04-46af-9ddb-8ea1f477dcbb status: 200 OK code: 200 duration: "" @@ -74,21 +74,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips?ip_address=195.154.70.164 method: GET response: - body: '{"id":"cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6","ip_address":"195.154.68.193","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"195-154-68-193.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"ips":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "280" + - "306" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:43 GMT + - Thu, 04 Nov 2021 13:23:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -98,7 +98,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f6503ac-3f88-4a2b-9540-0f9a5e8a151e + - 3905cc55-5f8e-48a4-8cea-e7eb4602cd47 status: 200 OK code: 200 duration: "" @@ -107,21 +107,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips?ip_address=195.154.68.193 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"ips":[{"id":"cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6","ip_address":"195.154.68.193","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"195-154-68-193.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"total_count":1}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "306" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:43 GMT + - Thu, 04 Nov 2021 13:23:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -131,7 +131,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 175a239a-a57a-4320-84da-ca8385353847 + - 34d9c3cd-a878-4194-a780-a7376c448448 status: 200 OK code: 200 duration: "" @@ -140,12 +140,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6","ip_address":"195.154.68.193","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"195-154-68-193.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "280" @@ -154,7 +154,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:44 GMT + - Thu, 04 Nov 2021 13:23:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -164,7 +164,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5e431c9-db71-4013-99dd-172ade1896f6 + - 2efaca45-381a-433d-a4a0-b5e4d9f761f6 status: 200 OK code: 200 duration: "" @@ -173,12 +173,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6","ip_address":"195.154.68.193","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"195-154-68-193.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "280" @@ -187,7 +187,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:44 GMT + - Thu, 04 Nov 2021 13:23:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -197,7 +197,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6521c35-5453-4689-94d1-b9c91867387d + - d57b4a6d-20cb-4f85-b988-40ede5b53f11 status: 200 OK code: 200 duration: "" @@ -206,12 +206,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips?ip_address=195.154.68.193 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips?ip_address=195.154.70.164 method: GET response: - body: '{"ips":[{"id":"cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6","ip_address":"195.154.68.193","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"195-154-68-193.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"total_count":1}' + body: '{"ips":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "306" @@ -220,7 +220,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:44 GMT + - Thu, 04 Nov 2021 13:23:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -230,7 +230,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b31d011-e571-493d-86bc-cd2e57fb2fdd + - 88059167-1b2b-427b-bc0d-160f0f9e6b4e status: 200 OK code: 200 duration: "" @@ -239,12 +239,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6","ip_address":"195.154.68.193","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"195-154-68-193.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "280" @@ -253,7 +253,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:44 GMT + - Thu, 04 Nov 2021 13:23:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -263,7 +263,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55d6cc0b-3bfa-42a7-acb6-73b533428af8 + - 844c0c39-5e56-4410-8883-a9a14b2849f5 status: 200 OK code: 200 duration: "" @@ -272,12 +272,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6","ip_address":"195.154.68.193","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"195-154-68-193.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "280" @@ -286,7 +286,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:44 GMT + - Thu, 04 Nov 2021 13:23:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -296,7 +296,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4404ce5e-d81d-44fc-bce2-95dbad0b55e6 + - 59f4671f-cd20-4a5d-91e9-377ddb93425c status: 200 OK code: 200 duration: "" @@ -305,12 +305,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6","ip_address":"195.154.68.193","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"195-154-68-193.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "280" @@ -319,7 +319,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:44 GMT + - Thu, 04 Nov 2021 13:23:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -329,7 +329,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccaedb78-1d82-482f-bd53-5c12540b0e5c + - 27380421-14b3-472c-9681-377d947d8453 status: 200 OK code: 200 duration: "" @@ -338,21 +338,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips?ip_address=195.154.68.193 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"ips":[{"id":"cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6","ip_address":"195.154.68.193","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"195-154-68-193.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"total_count":1}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "306" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:44 GMT + - Thu, 04 Nov 2021 13:23:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -362,7 +362,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 247ca47a-5882-452b-9256-2d1012f1adfc + - 1db383bc-9945-4161-b527-8efbe30f9d6e status: 200 OK code: 200 duration: "" @@ -371,21 +371,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips?ip_address=195.154.70.164 method: GET response: - body: '{"id":"cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6","ip_address":"195.154.68.193","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"195-154-68-193.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"ips":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "280" + - "306" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:44 GMT + - Thu, 04 Nov 2021 13:23:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -395,7 +395,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c256768-c66a-4b5c-9e84-0b4870219b10 + - 82fc6d51-0e02-40ce-a4b1-6c43caf1e235 status: 200 OK code: 200 duration: "" @@ -404,12 +404,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6","ip_address":"195.154.68.193","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"195-154-68-193.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "280" @@ -418,7 +418,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:44 GMT + - Thu, 04 Nov 2021 13:23:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -428,7 +428,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6950c641-fc95-4543-ac44-6a600b6654d9 + - f46d0a53-7de8-4ca8-a9ac-57a068a0eee7 status: 200 OK code: 200 duration: "" @@ -437,21 +437,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips?ip_address=195.154.70.164 method: GET response: - body: '{"id":"cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6","ip_address":"195.154.68.193","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"195-154-68-193.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"ips":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "280" + - "306" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:45 GMT + - Thu, 04 Nov 2021 13:23:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -461,7 +461,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06d12fb2-af65-4317-be20-7ad6f238d662 + - 6b7e0f46-4656-4076-b721-152e82a2973c status: 200 OK code: 200 duration: "" @@ -470,21 +470,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips?ip_address=195.154.68.193 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"ips":[{"id":"cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6","ip_address":"195.154.68.193","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"195-154-68-193.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"total_count":1}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "306" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:45 GMT + - Thu, 04 Nov 2021 13:23:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -494,7 +494,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c115e7d3-39b1-4039-8886-d3bd232d7b7e + - f8d496a4-1f9b-4b38-b4e0-a3c5cda7280d status: 200 OK code: 200 duration: "" @@ -503,12 +503,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6","ip_address":"195.154.68.193","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"195-154-68-193.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "280" @@ -517,7 +517,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:45 GMT + - Thu, 04 Nov 2021 13:23:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -527,7 +527,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e4fdf5d-13d4-486d-9103-f764cc08b407 + - f4900cda-a74f-4371-8c17-6261f4edc830 status: 200 OK code: 200 duration: "" @@ -536,9 +536,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: DELETE response: body: "" @@ -548,7 +548,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:46 GMT + - Thu, 04 Nov 2021 13:23:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -558,7 +558,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da6cc8cc-aa19-4f47-bec8-3510d6c060ff + - 1609ebe8-eade-40f9-8e98-22c17934b3e4 status: 204 No Content code: 204 duration: "" @@ -567,9 +567,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: body: '{"message":"ips not Found"}' @@ -581,7 +581,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:46 GMT + - Thu, 04 Nov 2021 13:23:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -591,7 +591,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95e59c4f-b9eb-4638-a875-37c8ddda77f2 + - 0fd0e2e4-ee61-4e19-9ddf-c615c37ed989 status: 404 Not Found code: 404 duration: "" @@ -600,9 +600,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: body: '{"message":"ips not Found"}' @@ -614,7 +614,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:46 GMT + - Thu, 04 Nov 2021 13:23:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -624,7 +624,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae6fa87b-2f4c-4189-bc2e-bf1a4d3beb0a + - 28c1bef2-3447-456c-a97a-163664247c65 status: 404 Not Found code: 404 duration: "" @@ -633,9 +633,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cac4f46d-e0fc-4ea7-953c-ca5aee6c00a6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: body: '{"message":"ips not Found"}' @@ -647,7 +647,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:46 GMT + - Thu, 04 Nov 2021 13:23:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -657,7 +657,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ab396aa-786d-4de5-9251-bf22b5d5e961 + - cdb06da8-143b-41d2-a37c-48bb9a866c97 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/lb-backend-basic.cassette.yaml b/scaleway/testdata/lb-backend-basic.cassette.yaml index ddd2f674f6..95c7063230 100644 --- a/scaleway/testdata/lb-backend-basic.cassette.yaml +++ b/scaleway/testdata/lb-backend-basic.cassette.yaml @@ -2,27 +2,27 @@ version: 1 interactions: - request: - body: '{"project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","reverse":null}' + body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","reverse":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":null,"reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "278" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:42 GMT + - Thu, 04 Nov 2021 13:03:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,37 +32,70 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02a0e25c-9a44-4bd9-abc8-bc508081b982 + - 7430f039-5a5b-497b-9310-677b98c519c9 status: 200 OK code: 200 duration: "" - request: - body: '{"project":"a57bd23d-c866-49eb-a6ac-438f85c22957"}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b8f8f595-5d97-4a36-b438-bd23415a4c9f + method: GET + response: + body: '{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "280" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:03:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 716b67a2-481d-4467-80aa-137b0a1b92ce + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project":"63a66ec9-a385-4194-bc15-04aa6921274a"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"id": "da0e90f7-efd0-448a-95aa-d4b1c6fab56b", "address": "163.172.144.38", - "reverse": null, "server": null, "organization": "9af7216e-7b97-404d-8ada-9f379eb39ae5", - "project": "a57bd23d-c866-49eb-a6ac-438f85c22957", "zone": "fr-par-1", "tags": + body: '{"ip": {"id": "f12f32af-e66d-400f-be7f-e3c4b240bd2d", "address": "51.15.204.222", + "reverse": null, "server": null, "organization": "63a66ec9-a385-4194-bc15-04aa6921274a", + "project": "63a66ec9-a385-4194-bc15-04aa6921274a", "zone": "fr-par-1", "tags": []}}' headers: Content-Length: - - "255" + - "254" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:42 GMT + - Thu, 04 Nov 2021 13:03:43 GMT Location: - - https://par1-cmp-prd-api02.internal.scaleway.com/ips/da0e90f7-efd0-448a-95aa-d4b1c6fab56b + - https://api.scaleway.com/instance/v1/ips/f12f32af-e66d-400f-be7f-e3c4b240bd2d Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -72,30 +105,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7637e2d8-7420-4a23-9231-4258b2a2b51a + - bc668e8a-e138-4403-b27a-d90c7438a6a7 status: 201 Created code: 201 duration: "" - request: - body: "" + body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","name":"test-lb","description":"","ip_id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/3899ba3b-13c6-4d86-8f09-71f9a429d527 - method: GET + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs + method: POST response: - body: '{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":null,"reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905794797Z","updated_at":"2021-11-04T13:03:42.905794797Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "278" + - "858" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:42 GMT + - Thu, 04 Nov 2021 13:03:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -105,7 +140,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 929d795d-2f1b-4744-aeb5-548bab72d7a0 + - cc8fbeb8-5009-48a0-89f6-a2f0ffc105f2 status: 200 OK code: 200 duration: "" @@ -114,24 +149,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/da0e90f7-efd0-448a-95aa-d4b1c6fab56b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f12f32af-e66d-400f-be7f-e3c4b240bd2d method: GET response: - body: '{"ip": {"id": "da0e90f7-efd0-448a-95aa-d4b1c6fab56b", "address": "163.172.144.38", - "reverse": null, "server": null, "organization": "9af7216e-7b97-404d-8ada-9f379eb39ae5", - "project": "a57bd23d-c866-49eb-a6ac-438f85c22957", "zone": "fr-par-1", "tags": + body: '{"ip": {"id": "f12f32af-e66d-400f-be7f-e3c4b240bd2d", "address": "51.15.204.222", + "reverse": null, "server": null, "organization": "63a66ec9-a385-4194-bc15-04aa6921274a", + "project": "63a66ec9-a385-4194-bc15-04aa6921274a", "zone": "fr-par-1", "tags": []}}' headers: Content-Length: - - "255" + - "254" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:42 GMT + - Thu, 04 Nov 2021 13:03:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -141,32 +176,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3a51b8e-5775-48c2-9f1d-794245b73809 + - 967b2fbf-99b7-416b-82ae-dfa36bcf8f64 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","name":"test-lb","description":"","ip_id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ee48f3dd-b701-4426-8e29-b5fbae1a129d + method: GET + response: + body: '{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"pending","instances":[{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"unknown","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:03:43.132629Z","region":"fr-par","zone":"fr-par-1"},{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"unknown","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:03:43.137934Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.155164Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1283" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Thu, 04 Nov 2021 13:03:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3a0fb351-4287-42ac-9d9d-46d82b9d7bd2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs - method: POST + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ee48f3dd-b701-4426-8e29-b5fbae1a129d + method: GET response: - body: '{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828173940Z","updated_at":"2021-05-20T14:43:42.828173940Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"ready","instances":[{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"ready","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:03:43.404076Z","region":"fr-par","zone":"fr-par-1"},{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"ready","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:03:43.596729Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.885875Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "814" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:42 GMT + - Thu, 04 Nov 2021 13:04:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -176,7 +242,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 637c781f-22d8-4385-b31f-0be40a5f79f3 + - fd947b5c-d2e6-425f-9975-691ff433ebd6 status: 200 OK code: 200 duration: "" @@ -185,21 +251,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f15e7fa-1265-405b-aa3c-0db6655776c6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ee48f3dd-b701-4426-8e29-b5fbae1a129d method: GET response: - body: '{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"pending","instances":[{"id":"78a415e8-bc2e-4af5-9b1b-144b865211ba","status":"unknown","ip_address":"10.69.4.55","created_at":"2021-05-20T14:25:47.492668Z","updated_at":"2021-05-20T14:43:43.011259Z","region":"fr-par","zone":"fr-par-1"},{"id":"7c27347b-9261-40bc-8006-89621933d3e5","status":"unknown","ip_address":"10.73.104.7","created_at":"2021-05-20T14:06:37.521526Z","updated_at":"2021-05-20T14:43:43.014545Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828174Z","updated_at":"2021-05-20T14:43:42.828174Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"ready","instances":[{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"ready","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:03:43.404076Z","region":"fr-par","zone":"fr-par-1"},{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"ready","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:03:43.596729Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.885875Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1234" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:43 GMT + - Thu, 04 Nov 2021 13:04:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -209,7 +275,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bcefa158-29f3-43c1-9d13-154ef70106cc + - 94d174aa-70d5-4b08-98cb-98b21ba4bb50 status: 200 OK code: 200 duration: "" @@ -218,21 +284,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f15e7fa-1265-405b-aa3c-0db6655776c6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ee48f3dd-b701-4426-8e29-b5fbae1a129d/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"ready","instances":[{"id":"78a415e8-bc2e-4af5-9b1b-144b865211ba","status":"ready","ip_address":"10.69.4.55","created_at":"2021-05-20T14:25:47.492668Z","updated_at":"2021-05-20T14:43:43.617805Z","region":"fr-par","zone":"fr-par-1"},{"id":"7c27347b-9261-40bc-8006-89621933d3e5","status":"ready","ip_address":"10.73.104.7","created_at":"2021-05-20T14:06:37.521526Z","updated_at":"2021-05-20T14:43:43.873012Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828174Z","updated_at":"2021-05-20T14:43:44.205974Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1228" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:45 GMT + - Thu, 04 Nov 2021 13:04:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -242,7 +308,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e7507a2-dade-4226-b599-7753bcb900f0 + - 8399e5e3-0551-454c-a17a-3b5f4190724c status: 200 OK code: 200 duration: "" @@ -251,21 +317,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f15e7fa-1265-405b-aa3c-0db6655776c6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ee48f3dd-b701-4426-8e29-b5fbae1a129d method: GET response: - body: '{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"ready","instances":[{"id":"78a415e8-bc2e-4af5-9b1b-144b865211ba","status":"ready","ip_address":"10.69.4.55","created_at":"2021-05-20T14:25:47.492668Z","updated_at":"2021-05-20T14:43:43.617805Z","region":"fr-par","zone":"fr-par-1"},{"id":"7c27347b-9261-40bc-8006-89621933d3e5","status":"ready","ip_address":"10.73.104.7","created_at":"2021-05-20T14:06:37.521526Z","updated_at":"2021-05-20T14:43:43.873012Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828174Z","updated_at":"2021-05-20T14:43:44.205974Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"ready","instances":[{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"ready","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:03:43.404076Z","region":"fr-par","zone":"fr-par-1"},{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"ready","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:03:43.596729Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.885875Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1228" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:45 GMT + - Thu, 04 Nov 2021 13:04:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -275,32 +341,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8062e17d-bcc1-4f24-82e0-169fa87b26c3 + - e9a4375b-2167-4ac3-a168-28059de88d21 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"check_max_retries":2,"port":80,"check_send_proxy":false,"check_timeout":30000,"check_delay":60000},"server_ip":["163.172.144.38"],"send_proxy_v2":false,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","timeout_server":null,"timeout_connect":null,"timeout_tunnel":null}' + body: '{"name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"check_max_retries":2,"port":80,"check_send_proxy":false,"check_timeout":30000,"check_delay":60000},"server_ip":["51.15.204.222"],"send_proxy_v2":false,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","timeout_server":null,"timeout_connect":null,"timeout_tunnel":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f15e7fa-1265-405b-aa3c-0db6655776c6/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ee48f3dd-b701-4426-8e29-b5fbae1a129d/backends method: POST response: - body: '{"id":"3222efcd-d86b-4108-b6b8-cd9839ef5a83","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":["163.172.144.38"],"lb":{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"ready","instances":[{"id":"78a415e8-bc2e-4af5-9b1b-144b865211ba","status":"ready","ip_address":"10.69.4.55","created_at":"2021-05-20T14:25:47.492668Z","updated_at":"2021-05-20T14:43:43.617805Z","region":"fr-par","zone":"fr-par-1"},{"id":"7c27347b-9261-40bc-8006-89621933d3e5","status":"ready","ip_address":"10.73.104.7","created_at":"2021-05-20T14:06:37.521526Z","updated_at":"2021-05-20T14:43:43.873012Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828174Z","updated_at":"2021-05-20T14:43:44.205974Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-20T14:43:45.315029336Z","updated_at":"2021-05-20T14:43:45.315029336Z"}' + body: '{"id":"c2b97d9c-bfe7-41e5-b5c7-c229c4165692","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":["51.15.204.222"],"lb":{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"ready","instances":[{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"pending","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:04:13.679974345Z","region":"fr-par","zone":"fr-par-1"},{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"pending","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:04:13.746689793Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.885875Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:04:13.657958280Z","updated_at":"2021-11-04T13:04:13.657958280Z"}' headers: Content-Length: - - "1864" + - "1922" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:45 GMT + - Thu, 04 Nov 2021 13:04:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -310,7 +376,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a8eb0e3-fd65-4a0f-898d-fc39225c523a + - b2784fe1-a30c-4a61-ac62-319f4d1806d0 status: 200 OK code: 200 duration: "" @@ -319,21 +385,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3222efcd-d86b-4108-b6b8-cd9839ef5a83 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c2b97d9c-bfe7-41e5-b5c7-c229c4165692 method: GET response: - body: '{"id":"3222efcd-d86b-4108-b6b8-cd9839ef5a83","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":["163.172.144.38"],"lb":{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828174Z","updated_at":"2021-05-20T14:43:44.205974Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-20T14:43:45.315029Z","updated_at":"2021-05-20T14:43:45.315029Z"}' + body: '{"id":"c2b97d9c-bfe7-41e5-b5c7-c229c4165692","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":["51.15.204.222"],"lb":{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"ready","instances":[{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"pending","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:04:13.746690Z","region":"fr-par","zone":"fr-par-1"},{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"pending","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:04:13.679974Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.885875Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:04:13.657958Z","updated_at":"2021-11-04T13:04:13.657958Z"}' headers: Content-Length: - - "1436" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:45 GMT + - Thu, 04 Nov 2021 13:04:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -343,7 +409,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30484a67-cb94-41eb-9f4b-5c7509d892a2 + - e5831e6e-e6e1-4436-a410-883a9d2259c4 status: 200 OK code: 200 duration: "" @@ -352,21 +418,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3222efcd-d86b-4108-b6b8-cd9839ef5a83 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c2b97d9c-bfe7-41e5-b5c7-c229c4165692 method: GET response: - body: '{"id":"3222efcd-d86b-4108-b6b8-cd9839ef5a83","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":["163.172.144.38"],"lb":{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828174Z","updated_at":"2021-05-20T14:43:44.205974Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-20T14:43:45.315029Z","updated_at":"2021-05-20T14:43:45.315029Z"}' + body: '{"id":"c2b97d9c-bfe7-41e5-b5c7-c229c4165692","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":["51.15.204.222"],"lb":{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"ready","instances":[{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"pending","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:04:13.746690Z","region":"fr-par","zone":"fr-par-1"},{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"ready","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:04:13.945863Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.885875Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:04:13.657958Z","updated_at":"2021-11-04T13:04:13.657958Z"}' headers: Content-Length: - - "1436" + - "1908" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:45 GMT + - Thu, 04 Nov 2021 13:04:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -376,7 +442,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c74a7851-ffe2-45b3-99d6-dbe7cea8ed21 + - 0c977df7-f496-4dfd-b02b-cb163d43ce63 status: 200 OK code: 200 duration: "" @@ -385,24 +451,57 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/da0e90f7-efd0-448a-95aa-d4b1c6fab56b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f12f32af-e66d-400f-be7f-e3c4b240bd2d method: GET response: - body: '{"ip": {"id": "da0e90f7-efd0-448a-95aa-d4b1c6fab56b", "address": "163.172.144.38", - "reverse": null, "server": null, "organization": "9af7216e-7b97-404d-8ada-9f379eb39ae5", - "project": "a57bd23d-c866-49eb-a6ac-438f85c22957", "zone": "fr-par-1", "tags": + body: '{"ip": {"id": "f12f32af-e66d-400f-be7f-e3c4b240bd2d", "address": "51.15.204.222", + "reverse": null, "server": null, "organization": "63a66ec9-a385-4194-bc15-04aa6921274a", + "project": "63a66ec9-a385-4194-bc15-04aa6921274a", "zone": "fr-par-1", "tags": []}}' headers: Content-Length: - - "255" + - "254" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:04:14 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6ea832ed-2c3a-4df9-9659-f78877a25e25 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b8f8f595-5d97-4a36-b438-bd23415a4c9f + method: GET + response: + body: '{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:45 GMT + - Thu, 04 Nov 2021 13:04:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -412,7 +511,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5483a9ac-cab1-4f78-80c1-4d7ed62a0243 + - a35f8b1c-0454-45e8-abee-00f154606a8c status: 200 OK code: 200 duration: "" @@ -421,21 +520,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/3899ba3b-13c6-4d86-8f09-71f9a429d527 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ee48f3dd-b701-4426-8e29-b5fbae1a129d method: GET response: - body: '{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"ready","instances":[{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"ready","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:04:13.945863Z","region":"fr-par","zone":"fr-par-1"},{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"ready","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:04:14.054537Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.885875Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "312" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:45 GMT + - Thu, 04 Nov 2021 13:04:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -445,7 +544,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 258c24eb-5e1a-4ebb-88ec-d9eb205bb9d4 + - b655e6f5-e2a1-4c81-acf5-00dfc8bc6df2 status: 200 OK code: 200 duration: "" @@ -454,21 +553,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f15e7fa-1265-405b-aa3c-0db6655776c6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ee48f3dd-b701-4426-8e29-b5fbae1a129d/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"ready","instances":[{"id":"78a415e8-bc2e-4af5-9b1b-144b865211ba","status":"ready","ip_address":"10.69.4.55","created_at":"2021-05-20T14:25:47.492668Z","updated_at":"2021-05-20T14:43:45.641872Z","region":"fr-par","zone":"fr-par-1"},{"id":"7c27347b-9261-40bc-8006-89621933d3e5","status":"ready","ip_address":"10.73.104.7","created_at":"2021-05-20T14:06:37.521526Z","updated_at":"2021-05-20T14:43:45.722019Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828174Z","updated_at":"2021-05-20T14:43:44.205974Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1228" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:46 GMT + - Thu, 04 Nov 2021 13:04:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -478,7 +577,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 667f439c-48bc-4d93-bbed-6bb579d75a53 + - d6204301-dce1-40cf-8105-cd78b51b8bbc status: 200 OK code: 200 duration: "" @@ -487,21 +586,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3222efcd-d86b-4108-b6b8-cd9839ef5a83 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c2b97d9c-bfe7-41e5-b5c7-c229c4165692 method: GET response: - body: '{"id":"3222efcd-d86b-4108-b6b8-cd9839ef5a83","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":["163.172.144.38"],"lb":{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828174Z","updated_at":"2021-05-20T14:43:44.205974Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-20T14:43:45.315029Z","updated_at":"2021-05-20T14:43:45.315029Z"}' + body: '{"id":"c2b97d9c-bfe7-41e5-b5c7-c229c4165692","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":["51.15.204.222"],"lb":{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"ready","instances":[{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"ready","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:04:14.054537Z","region":"fr-par","zone":"fr-par-1"},{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"ready","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:04:13.945863Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.885875Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:04:13.657958Z","updated_at":"2021-11-04T13:04:13.657958Z"}' headers: Content-Length: - - "1436" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:46 GMT + - Thu, 04 Nov 2021 13:04:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -511,7 +610,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6894e925-5bfd-4b0b-b3ce-6c2092dd8d65 + - 136b442e-ecf8-4c3e-8e9f-f7fe65ef975b status: 200 OK code: 200 duration: "" @@ -520,21 +619,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/3899ba3b-13c6-4d86-8f09-71f9a429d527 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b8f8f595-5d97-4a36-b438-bd23415a4c9f method: GET response: - body: '{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "312" + - "314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:46 GMT + - Thu, 04 Nov 2021 13:04:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -544,7 +643,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b03c4007-5f24-4034-b678-ccaa801fba36 + - 3cdcd81d-a8ed-48f4-a0df-1245631618ea status: 200 OK code: 200 duration: "" @@ -553,24 +652,57 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/da0e90f7-efd0-448a-95aa-d4b1c6fab56b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f12f32af-e66d-400f-be7f-e3c4b240bd2d method: GET response: - body: '{"ip": {"id": "da0e90f7-efd0-448a-95aa-d4b1c6fab56b", "address": "163.172.144.38", - "reverse": null, "server": null, "organization": "9af7216e-7b97-404d-8ada-9f379eb39ae5", - "project": "a57bd23d-c866-49eb-a6ac-438f85c22957", "zone": "fr-par-1", "tags": + body: '{"ip": {"id": "f12f32af-e66d-400f-be7f-e3c4b240bd2d", "address": "51.15.204.222", + "reverse": null, "server": null, "organization": "63a66ec9-a385-4194-bc15-04aa6921274a", + "project": "63a66ec9-a385-4194-bc15-04aa6921274a", "zone": "fr-par-1", "tags": []}}' headers: Content-Length: - - "255" + - "254" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:04:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 726d6aea-4411-483b-a60e-52d7062fd9f7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ee48f3dd-b701-4426-8e29-b5fbae1a129d + method: GET + response: + body: '{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"ready","instances":[{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"ready","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:04:13.945863Z","region":"fr-par","zone":"fr-par-1"},{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"ready","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:04:14.054537Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.885875Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:46 GMT + - Thu, 04 Nov 2021 13:04:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -580,7 +712,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8ec1829-c3e9-43c7-a4dd-668fe693a6a7 + - b4df0047-57b0-4376-b9ac-ad8d705f867e status: 200 OK code: 200 duration: "" @@ -589,21 +721,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f15e7fa-1265-405b-aa3c-0db6655776c6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ee48f3dd-b701-4426-8e29-b5fbae1a129d/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"ready","instances":[{"id":"78a415e8-bc2e-4af5-9b1b-144b865211ba","status":"ready","ip_address":"10.69.4.55","created_at":"2021-05-20T14:25:47.492668Z","updated_at":"2021-05-20T14:43:45.641872Z","region":"fr-par","zone":"fr-par-1"},{"id":"7c27347b-9261-40bc-8006-89621933d3e5","status":"ready","ip_address":"10.73.104.7","created_at":"2021-05-20T14:06:37.521526Z","updated_at":"2021-05-20T14:43:45.722019Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828174Z","updated_at":"2021-05-20T14:43:44.205974Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1228" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:46 GMT + - Thu, 04 Nov 2021 13:04:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -613,7 +745,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cdcfa27-b3e2-474b-b738-d53758636bdd + - 31cbbfe0-0856-4d40-ad6b-098bacd639e5 status: 200 OK code: 200 duration: "" @@ -622,21 +754,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3222efcd-d86b-4108-b6b8-cd9839ef5a83 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c2b97d9c-bfe7-41e5-b5c7-c229c4165692 method: GET response: - body: '{"id":"3222efcd-d86b-4108-b6b8-cd9839ef5a83","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":["163.172.144.38"],"lb":{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828174Z","updated_at":"2021-05-20T14:43:44.205974Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-20T14:43:45.315029Z","updated_at":"2021-05-20T14:43:45.315029Z"}' + body: '{"id":"c2b97d9c-bfe7-41e5-b5c7-c229c4165692","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":["51.15.204.222"],"lb":{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"ready","instances":[{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"ready","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:04:14.054537Z","region":"fr-par","zone":"fr-par-1"},{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"ready","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:04:13.945863Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.885875Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:04:13.657958Z","updated_at":"2021-11-04T13:04:13.657958Z"}' headers: Content-Length: - - "1436" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:46 GMT + - Thu, 04 Nov 2021 13:04:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -646,37 +778,37 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7600ab60-0c75-4e37-855f-afeea585e2cd + - e1e5200a-89c3-49ac-94cd-42664641c97c status: 200 OK code: 200 duration: "" - request: - body: '{"project":"a57bd23d-c866-49eb-a6ac-438f85c22957"}' + body: '{"project":"63a66ec9-a385-4194-bc15-04aa6921274a"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"id": "bd3c1de4-4062-43da-a8ae-f9e06aee92f9", "address": "51.158.75.145", - "reverse": null, "server": null, "organization": "9af7216e-7b97-404d-8ada-9f379eb39ae5", - "project": "a57bd23d-c866-49eb-a6ac-438f85c22957", "zone": "fr-par-1", "tags": + body: '{"ip": {"id": "13299596-dd41-4a89-a7bb-05a7fd6ff137", "address": "212.47.243.144", + "reverse": null, "server": null, "organization": "63a66ec9-a385-4194-bc15-04aa6921274a", + "project": "63a66ec9-a385-4194-bc15-04aa6921274a", "zone": "fr-par-1", "tags": []}}' headers: Content-Length: - - "254" + - "255" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:46 GMT + - Thu, 04 Nov 2021 13:04:16 GMT Location: - - https://par1-cmp-prd-api01.internal.scaleway.com/ips/bd3c1de4-4062-43da-a8ae-f9e06aee92f9 + - https://api.scaleway.com/instance/v1/ips/13299596-dd41-4a89-a7bb-05a7fd6ff137 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -686,7 +818,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a0929c7-d2d0-4099-86e4-3dd0922c7404 + - c11e3080-68b4-4905-ab6d-f19ee8ea6623 status: 201 Created code: 201 duration: "" @@ -695,24 +827,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/bd3c1de4-4062-43da-a8ae-f9e06aee92f9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/13299596-dd41-4a89-a7bb-05a7fd6ff137 method: GET response: - body: '{"ip": {"id": "bd3c1de4-4062-43da-a8ae-f9e06aee92f9", "address": "51.158.75.145", - "reverse": null, "server": null, "organization": "9af7216e-7b97-404d-8ada-9f379eb39ae5", - "project": "a57bd23d-c866-49eb-a6ac-438f85c22957", "zone": "fr-par-1", "tags": + body: '{"ip": {"id": "13299596-dd41-4a89-a7bb-05a7fd6ff137", "address": "212.47.243.144", + "reverse": null, "server": null, "organization": "63a66ec9-a385-4194-bc15-04aa6921274a", + "project": "63a66ec9-a385-4194-bc15-04aa6921274a", "zone": "fr-par-1", "tags": []}}' headers: Content-Length: - - "254" + - "255" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:46 GMT + - Thu, 04 Nov 2021 13:04:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -722,7 +854,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ed2f2ec-14c9-400a-9775-54d826f46bd4 + - fcb29605-93ce-44df-ad1e-f1f69dc37538 status: 200 OK code: 200 duration: "" @@ -733,21 +865,21 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3222efcd-d86b-4108-b6b8-cd9839ef5a83 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c2b97d9c-bfe7-41e5-b5c7-c229c4165692 method: PUT response: - body: '{"id":"3222efcd-d86b-4108-b6b8-cd9839ef5a83","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"leastconn","sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":["163.172.144.38"],"lb":{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828174Z","updated_at":"2021-05-20T14:43:44.205974Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":1000,"timeout_connect":2500,"timeout_tunnel":3000,"on_marked_down_action":"shutdown_sessions","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-20T14:43:45.315029Z","updated_at":"2021-05-20T14:43:47.314222087Z"}' + body: '{"id":"c2b97d9c-bfe7-41e5-b5c7-c229c4165692","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"leastconn","sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":["51.15.204.222"],"lb":{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"ready","instances":[{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"ready","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:04:14.054537Z","region":"fr-par","zone":"fr-par-1"},{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"ready","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:04:13.945863Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.885875Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":1000,"timeout_connect":2500,"timeout_tunnel":3000,"on_marked_down_action":"shutdown_sessions","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:04:13.657958Z","updated_at":"2021-11-04T13:04:16.834941385Z"}' headers: Content-Length: - - "1441" + - "1911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:47 GMT + - Thu, 04 Nov 2021 13:04:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -757,7 +889,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bfcd07f-e07c-41a8-bf1e-2a6d6ce06c84 + - 703149f7-e293-462c-aaaf-20a07b6cfbbd status: 200 OK code: 200 duration: "" @@ -768,9 +900,9 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3222efcd-d86b-4108-b6b8-cd9839ef5a83/healthcheck + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c2b97d9c-bfe7-41e5-b5c7-c229c4165692/healthcheck method: PUT response: body: '{"port":81,"check_delay":10000,"check_timeout":15000,"check_max_retries":3,"check_send_proxy":false,"tcp_config":{}}' @@ -782,7 +914,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:47 GMT + - Thu, 04 Nov 2021 13:04:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -792,32 +924,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6679e452-e01c-4c54-9ed0-321fed44a395 + - 6b630590-7829-47b4-964e-369f8217e845 status: 200 OK code: 200 duration: "" - request: - body: '{"server_ip":["163.172.144.38","51.158.75.145"]}' + body: '{"server_ip":["51.15.204.222","212.47.243.144"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3222efcd-d86b-4108-b6b8-cd9839ef5a83/servers + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c2b97d9c-bfe7-41e5-b5c7-c229c4165692/servers method: PUT response: - body: '{"id":"3222efcd-d86b-4108-b6b8-cd9839ef5a83","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"leastconn","sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","health_check":{"port":81,"check_delay":10000,"check_timeout":15000,"check_max_retries":3,"check_send_proxy":false,"tcp_config":{}},"pool":["163.172.144.38","51.158.75.145"],"lb":{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828174Z","updated_at":"2021-05-20T14:43:44.205974Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":1000,"timeout_connect":2500,"timeout_tunnel":3000,"on_marked_down_action":"shutdown_sessions","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-20T14:43:45.315029Z","updated_at":"2021-05-20T14:43:47.975268561Z"}' + body: '{"id":"c2b97d9c-bfe7-41e5-b5c7-c229c4165692","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"leastconn","sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","health_check":{"port":81,"check_delay":10000,"check_timeout":15000,"check_max_retries":3,"check_send_proxy":false,"tcp_config":{}},"pool":["51.15.204.222","212.47.243.144"],"lb":{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"ready","instances":[{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"pending","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:04:17.660111436Z","region":"fr-par","zone":"fr-par-1"},{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"pending","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:04:17.730409621Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.885875Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":1000,"timeout_connect":2500,"timeout_tunnel":3000,"on_marked_down_action":"shutdown_sessions","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:04:13.657958Z","updated_at":"2021-11-04T13:04:17.637163822Z"}' headers: Content-Length: - - "1457" + - "1938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:48 GMT + - Thu, 04 Nov 2021 13:04:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -827,7 +959,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d21401f7-37d8-448a-81c1-25156de53dd5 + - b6ce4a50-4820-407c-8376-0800aff3a78d status: 200 OK code: 200 duration: "" @@ -836,21 +968,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3222efcd-d86b-4108-b6b8-cd9839ef5a83 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c2b97d9c-bfe7-41e5-b5c7-c229c4165692 method: GET response: - body: '{"id":"3222efcd-d86b-4108-b6b8-cd9839ef5a83","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"leastconn","sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","health_check":{"port":81,"check_delay":10000,"check_timeout":15000,"check_max_retries":3,"check_send_proxy":false,"tcp_config":{}},"pool":["163.172.144.38","51.158.75.145"],"lb":{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828174Z","updated_at":"2021-05-20T14:43:44.205974Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":1000,"timeout_connect":2500,"timeout_tunnel":3000,"on_marked_down_action":"shutdown_sessions","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-20T14:43:45.315029Z","updated_at":"2021-05-20T14:43:47.975269Z"}' + body: '{"id":"c2b97d9c-bfe7-41e5-b5c7-c229c4165692","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"leastconn","sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","health_check":{"port":81,"check_delay":10000,"check_timeout":15000,"check_max_retries":3,"check_send_proxy":false,"tcp_config":{}},"pool":["51.15.204.222","212.47.243.144"],"lb":{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"ready","instances":[{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"pending","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:04:17.730410Z","region":"fr-par","zone":"fr-par-1"},{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"pending","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:04:17.660111Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.885875Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":1000,"timeout_connect":2500,"timeout_tunnel":3000,"on_marked_down_action":"shutdown_sessions","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:04:13.657958Z","updated_at":"2021-11-04T13:04:17.637164Z"}' headers: Content-Length: - - "1454" + - "1929" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:48 GMT + - Thu, 04 Nov 2021 13:04:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -860,7 +992,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf39cd31-a81e-41e0-a786-c24b5aa46f7f + - ac5052f8-109e-40a4-864e-0046be6af8f9 status: 200 OK code: 200 duration: "" @@ -869,21 +1001,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3222efcd-d86b-4108-b6b8-cd9839ef5a83 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c2b97d9c-bfe7-41e5-b5c7-c229c4165692 method: GET response: - body: '{"id":"3222efcd-d86b-4108-b6b8-cd9839ef5a83","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"leastconn","sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","health_check":{"port":81,"check_delay":10000,"check_timeout":15000,"check_max_retries":3,"check_send_proxy":false,"tcp_config":{}},"pool":["163.172.144.38","51.158.75.145"],"lb":{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828174Z","updated_at":"2021-05-20T14:43:44.205974Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":1000,"timeout_connect":2500,"timeout_tunnel":3000,"on_marked_down_action":"shutdown_sessions","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-20T14:43:45.315029Z","updated_at":"2021-05-20T14:43:47.975269Z"}' + body: '{"id":"c2b97d9c-bfe7-41e5-b5c7-c229c4165692","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"leastconn","sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","health_check":{"port":81,"check_delay":10000,"check_timeout":15000,"check_max_retries":3,"check_send_proxy":false,"tcp_config":{}},"pool":["51.15.204.222","212.47.243.144"],"lb":{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"ready","instances":[{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"ready","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:04:17.963318Z","region":"fr-par","zone":"fr-par-1"},{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"ready","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:04:17.881471Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.885875Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":1000,"timeout_connect":2500,"timeout_tunnel":3000,"on_marked_down_action":"shutdown_sessions","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:04:13.657958Z","updated_at":"2021-11-04T13:04:17.637164Z"}' headers: Content-Length: - - "1454" + - "1925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:48 GMT + - Thu, 04 Nov 2021 13:04:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -893,7 +1025,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab88e94d-177c-4f75-a7f6-abc6413093e6 + - d8b2bd65-0280-4d74-96b0-42619b052291 status: 200 OK code: 200 duration: "" @@ -902,14 +1034,14 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/bd3c1de4-4062-43da-a8ae-f9e06aee92f9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f12f32af-e66d-400f-be7f-e3c4b240bd2d method: GET response: - body: '{"ip": {"id": "bd3c1de4-4062-43da-a8ae-f9e06aee92f9", "address": "51.158.75.145", - "reverse": null, "server": null, "organization": "9af7216e-7b97-404d-8ada-9f379eb39ae5", - "project": "a57bd23d-c866-49eb-a6ac-438f85c22957", "zone": "fr-par-1", "tags": + body: '{"ip": {"id": "f12f32af-e66d-400f-be7f-e3c4b240bd2d", "address": "51.15.204.222", + "reverse": null, "server": null, "organization": "63a66ec9-a385-4194-bc15-04aa6921274a", + "project": "63a66ec9-a385-4194-bc15-04aa6921274a", "zone": "fr-par-1", "tags": []}}' headers: Content-Length: @@ -919,7 +1051,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:48 GMT + - Thu, 04 Nov 2021 13:04:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -929,7 +1061,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9091d35-6cb7-4020-8d61-3c198ca52631 + - 8a5ac390-dbf4-44a5-ac81-02eccf9db705 status: 200 OK code: 200 duration: "" @@ -938,21 +1070,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/3899ba3b-13c6-4d86-8f09-71f9a429d527 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/13299596-dd41-4a89-a7bb-05a7fd6ff137 method: GET response: - body: '{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"ip": {"id": "13299596-dd41-4a89-a7bb-05a7fd6ff137", "address": "212.47.243.144", + "reverse": null, "server": null, "organization": "63a66ec9-a385-4194-bc15-04aa6921274a", + "project": "63a66ec9-a385-4194-bc15-04aa6921274a", "zone": "fr-par-1", "tags": + []}}' headers: Content-Length: - - "312" + - "255" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:48 GMT + - Thu, 04 Nov 2021 13:04:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -962,7 +1097,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bd7770b-77c7-4be0-838a-cad45fad5f0a + - c7f22fb4-3475-4254-818d-e0da24dd85c2 status: 200 OK code: 200 duration: "" @@ -971,24 +1106,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/da0e90f7-efd0-448a-95aa-d4b1c6fab56b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b8f8f595-5d97-4a36-b438-bd23415a4c9f method: GET response: - body: '{"ip": {"id": "da0e90f7-efd0-448a-95aa-d4b1c6fab56b", "address": "163.172.144.38", - "reverse": null, "server": null, "organization": "9af7216e-7b97-404d-8ada-9f379eb39ae5", - "project": "a57bd23d-c866-49eb-a6ac-438f85c22957", "zone": "fr-par-1", "tags": - []}}' + body: '{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "255" + - "314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:48 GMT + - Thu, 04 Nov 2021 13:04:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -998,7 +1130,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4ee31e3-fbb9-4752-8953-dbfda3c1b5aa + - 37bfffa7-ca76-4031-b7e8-68db299071a9 status: 200 OK code: 200 duration: "" @@ -1007,21 +1139,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f15e7fa-1265-405b-aa3c-0db6655776c6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ee48f3dd-b701-4426-8e29-b5fbae1a129d method: GET response: - body: '{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"ready","instances":[{"id":"78a415e8-bc2e-4af5-9b1b-144b865211ba","status":"ready","ip_address":"10.69.4.55","created_at":"2021-05-20T14:25:47.492668Z","updated_at":"2021-05-20T14:43:48.239542Z","region":"fr-par","zone":"fr-par-1"},{"id":"7c27347b-9261-40bc-8006-89621933d3e5","status":"ready","ip_address":"10.73.104.7","created_at":"2021-05-20T14:06:37.521526Z","updated_at":"2021-05-20T14:43:48.354062Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828174Z","updated_at":"2021-05-20T14:43:44.205974Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"ready","instances":[{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"ready","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:04:17.881471Z","region":"fr-par","zone":"fr-par-1"},{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"ready","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:04:17.963318Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.885875Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1228" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:48 GMT + - Thu, 04 Nov 2021 13:04:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1031,7 +1163,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b8dcd62-3549-449c-8f66-50cddf55d92b + - 095741d4-12de-45a8-a8cd-d2ca694396de status: 200 OK code: 200 duration: "" @@ -1040,21 +1172,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3222efcd-d86b-4108-b6b8-cd9839ef5a83 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ee48f3dd-b701-4426-8e29-b5fbae1a129d/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"3222efcd-d86b-4108-b6b8-cd9839ef5a83","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"leastconn","sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","health_check":{"port":81,"check_delay":10000,"check_timeout":15000,"check_max_retries":3,"check_send_proxy":false,"tcp_config":{}},"pool":["163.172.144.38","51.158.75.145"],"lb":{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828174Z","updated_at":"2021-05-20T14:43:44.205974Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":1000,"timeout_connect":2500,"timeout_tunnel":3000,"on_marked_down_action":"shutdown_sessions","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-20T14:43:45.315029Z","updated_at":"2021-05-20T14:43:47.975269Z"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1454" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:48 GMT + - Thu, 04 Nov 2021 13:04:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1064,7 +1196,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1fadd98-7635-4883-bad3-e2a80dd36976 + - 99142266-7342-4ee3-b9bc-81775d1c21f4 status: 200 OK code: 200 duration: "" @@ -1073,9 +1205,42 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3222efcd-d86b-4108-b6b8-cd9839ef5a83 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c2b97d9c-bfe7-41e5-b5c7-c229c4165692 + method: GET + response: + body: '{"id":"c2b97d9c-bfe7-41e5-b5c7-c229c4165692","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"leastconn","sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","health_check":{"port":81,"check_delay":10000,"check_timeout":15000,"check_max_retries":3,"check_send_proxy":false,"tcp_config":{}},"pool":["51.15.204.222","212.47.243.144"],"lb":{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"ready","instances":[{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"ready","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:04:17.963318Z","region":"fr-par","zone":"fr-par-1"},{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"ready","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:04:17.881471Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.885875Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":1000,"timeout_connect":2500,"timeout_tunnel":3000,"on_marked_down_action":"shutdown_sessions","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:04:13.657958Z","updated_at":"2021-11-04T13:04:17.637164Z"}' + headers: + Content-Length: + - "1925" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:04:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bafae74e-51b9-4dbd-998f-c410ffc974c2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c2b97d9c-bfe7-41e5-b5c7-c229c4165692 method: DELETE response: body: "" @@ -1085,7 +1250,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:49 GMT + - Thu, 04 Nov 2021 13:04:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1095,7 +1260,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d474a12-d3a1-46ec-bb67-909171850491 + - da0ea743-9689-475c-96da-1accbd53fc4e status: 204 No Content code: 204 duration: "" @@ -1104,19 +1269,17 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/da0e90f7-efd0-448a-95aa-d4b1c6fab56b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/13299596-dd41-4a89-a7bb-05a7fd6ff137 method: DELETE response: body: "" headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json Date: - - Thu, 20 May 2021 14:43:49 GMT + - Thu, 04 Nov 2021 13:04:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1126,7 +1289,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43bbe860-2156-47d6-808f-bc08f4f75703 + - 4976fff0-c8c6-4a8c-b2a6-f175504001f8 status: 204 No Content code: 204 duration: "" @@ -1135,19 +1298,17 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/bd3c1de4-4062-43da-a8ae-f9e06aee92f9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f12f32af-e66d-400f-be7f-e3c4b240bd2d method: DELETE response: body: "" headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json Date: - - Thu, 20 May 2021 14:43:49 GMT + - Thu, 04 Nov 2021 13:04:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1157,7 +1318,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 174eca66-e99d-490b-9247-8f1792bfb3b2 + - cb6c3a83-10a3-475a-aafb-257a7fba5adb status: 204 No Content code: 204 duration: "" @@ -1166,9 +1327,42 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ee48f3dd-b701-4426-8e29-b5fbae1a129d + method: GET + response: + body: '{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"ready","instances":[{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"ready","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:04:19.678332Z","region":"fr-par","zone":"fr-par-1"},{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"ready","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:04:19.749030Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:03:43.885875Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1277" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:04:19 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1739c7c2-38f2-4c7a-b42b-e9fd21309ef4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f15e7fa-1265-405b-aa3c-0db6655776c6?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ee48f3dd-b701-4426-8e29-b5fbae1a129d?release_ip=false method: DELETE response: body: "" @@ -1178,7 +1372,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:50 GMT + - Thu, 04 Nov 2021 13:04:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1188,7 +1382,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbf48165-6e55-4050-9104-8c37f94970d0 + - 08d171a3-0145-4296-8e46-87449e851abf status: 204 No Content code: 204 duration: "" @@ -1197,21 +1391,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f15e7fa-1265-405b-aa3c-0db6655776c6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ee48f3dd-b701-4426-8e29-b5fbae1a129d method: GET response: - body: '{"id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","name":"test-lb","description":"","status":"pending","instances":[{"id":"78a415e8-bc2e-4af5-9b1b-144b865211ba","status":"ready","ip_address":"10.69.4.55","created_at":"2021-05-20T14:25:47.492668Z","updated_at":"2021-05-20T14:43:49.779320Z","region":"fr-par","zone":"fr-par-1"},{"id":"7c27347b-9261-40bc-8006-89621933d3e5","status":"ready","ip_address":"10.73.104.7","created_at":"2021-05-20T14:06:37.521526Z","updated_at":"2021-05-20T14:43:49.842760Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","ip":[{"id":"3899ba3b-13c6-4d86-8f09-71f9a429d527","ip_address":"51.159.24.233","organization_id":"9af7216e-7b97-404d-8ada-9f379eb39ae5","project_id":"a57bd23d-c866-49eb-a6ac-438f85c22957","lb_id":"6f15e7fa-1265-405b-aa3c-0db6655776c6","reverse":"51-159-24-233.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-20T14:43:42.828174Z","updated_at":"2021-05-20T14:43:49.926447Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","name":"test-lb","description":"","status":"pending","instances":[{"id":"89e4aa5b-17ed-4d2c-8a32-fcd9de4de4c3","status":"ready","ip_address":"10.64.202.101","created_at":"2021-11-04T10:41:17.436546Z","updated_at":"2021-11-04T13:04:19.678332Z","region":"fr-par","zone":"fr-par-1"},{"id":"68512c7f-6089-4f50-9b7d-cdfdd9d1f908","status":"ready","ip_address":"10.69.106.131","created_at":"2021-11-04T09:36:17.425233Z","updated_at":"2021-11-04T13:04:19.749030Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b8f8f595-5d97-4a36-b438-bd23415a4c9f","ip_address":"195.154.70.223","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"ee48f3dd-b701-4426-8e29-b5fbae1a129d","reverse":"195-154-70-223.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:42.905795Z","updated_at":"2021-11-04T13:04:19.917274Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1230" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:50 GMT + - Thu, 04 Nov 2021 13:04:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1221,7 +1415,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 126371a2-fc55-424b-aba3-fc384fe9c64f + - 12ea4275-409a-4f63-9b15-dd8eafeb12c3 status: 200 OK code: 200 duration: "" @@ -1230,9 +1424,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f15e7fa-1265-405b-aa3c-0db6655776c6 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ee48f3dd-b701-4426-8e29-b5fbae1a129d method: GET response: body: '{"message":"lbs not Found"}' @@ -1244,7 +1438,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:52 GMT + - Thu, 04 Nov 2021 13:04:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1254,7 +1448,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f551e80-dc83-4da6-9b16-9a7599b22bfd + - 8536f42a-b53e-4964-b6fd-95db901c6d1a status: 404 Not Found code: 404 duration: "" @@ -1263,9 +1457,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/3899ba3b-13c6-4d86-8f09-71f9a429d527 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b8f8f595-5d97-4a36-b438-bd23415a4c9f method: DELETE response: body: "" @@ -1275,7 +1469,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:52 GMT + - Thu, 04 Nov 2021 13:04:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1285,7 +1479,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4de87f5f-6ab9-4960-a74e-c9ea472672b7 + - 69cc34f7-5aee-495a-89b5-ff6951d6728c status: 204 No Content code: 204 duration: "" @@ -1294,9 +1488,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.15.11; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3222efcd-d86b-4108-b6b8-cd9839ef5a83 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c2b97d9c-bfe7-41e5-b5c7-c229c4165692 method: GET response: body: '{"message":"backend_id not Found"}' @@ -1308,7 +1502,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 May 2021 14:43:52 GMT + - Thu, 04 Nov 2021 13:04:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1318,7 +1512,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a28b600-e1ee-47d7-838f-1bbc88bd0b12 + - 3b094b82-e4ec-4182-a2d7-886e87011550 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/lb-backend-health-check.cassette.yaml b/scaleway/testdata/lb-backend-health-check.cassette.yaml index 8bc28cde4e..f72ae8ae26 100644 --- a/scaleway/testdata/lb-backend-health-check.cassette.yaml +++ b/scaleway/testdata/lb-backend-health-check.cassette.yaml @@ -2,27 +2,27 @@ version: 1 interactions: - request: - body: '{"project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","reverse":null}' + body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","reverse":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "276" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:43 GMT + - Thu, 04 Nov 2021 13:05:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e44c82c5-d005-4e9d-9451-1c49d923f8cb + - 31e0ecfd-2bca-4489-ad0a-4ea5f0d88364 status: 200 OK code: 200 duration: "" @@ -41,21 +41,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb75edc9-bede-402f-8a14-9845e4ecb22d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "276" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:43 GMT + - Thu, 04 Nov 2021 13:05:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,32 +65,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 254b38f9-3ca8-43c7-b881-4b526e9fffd9 + - d267a857-6c01-4f1c-a82f-b9b9b1ffc96e status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","name":"test-lb","description":"","ip_id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' + body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","name":"test-lb","description":"","ip_id":"a7972715-724c-448c-85b2-640ffc655a09","tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547004Z","updated_at":"2021-05-17T12:47:44.001547004Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945274966Z","updated_at":"2021-11-04T13:05:23.945274966Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "812" + - "858" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:44 GMT + - Thu, 04 Nov 2021 13:05:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33903dd9-b7b0-424e-b877-5ab7183a896b + - 2d6f3d6f-51c5-4ebe-aa9d-7e72f79d2ceb status: 200 OK code: 200 duration: "" @@ -109,21 +109,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/41c8db39-ba1a-4445-84f8-7eac36893cc7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798 method: GET response: - body: '{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"pending","instances":[{"id":"21dea5d1-b3c1-4f07-a92b-764a0500ce49","status":"unknown","ip_address":"10.64.160.125","created_at":"2021-05-17T12:46:00.472338Z","updated_at":"2021-05-17T12:47:44.158685Z","region":"fr-par","zone":"fr-par-1"},{"id":"3ec10a2a-47b1-4a78-903e-6a86b2e7fdcf","status":"unknown","ip_address":"10.70.58.93","created_at":"2021-05-17T12:34:55.661808Z","updated_at":"2021-05-17T12:47:44.161030Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:44.001547Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:23.945275Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1235" + - "852" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:44 GMT + - Thu, 04 Nov 2021 13:05:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffff50ca-6cae-4d5d-be36-1899dec819be + - 0c5ec794-8af8-4519-a25b-40bdb407bc9d status: 200 OK code: 200 duration: "" @@ -142,21 +142,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/41c8db39-ba1a-4445-84f8-7eac36893cc7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798 method: GET response: - body: '{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[{"id":"21dea5d1-b3c1-4f07-a92b-764a0500ce49","status":"ready","ip_address":"10.64.160.125","created_at":"2021-05-17T12:46:00.472338Z","updated_at":"2021-05-17T12:47:44.595145Z","region":"fr-par","zone":"fr-par-1"},{"id":"3ec10a2a-47b1-4a78-903e-6a86b2e7fdcf","status":"ready","ip_address":"10.70.58.93","created_at":"2021-05-17T12:34:55.661808Z","updated_at":"2021-05-17T12:47:45.261421Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:05:24.354312Z","region":"fr-par","zone":"fr-par-1"},{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:05:24.751564Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1229" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:46 GMT + - Thu, 04 Nov 2021 13:05:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19d203e1-da7f-4ce1-8331-505d88788415 + - edae52a5-9125-4ece-9ef0-de6cf087ede4 status: 200 OK code: 200 duration: "" @@ -175,21 +175,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/41c8db39-ba1a-4445-84f8-7eac36893cc7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798 method: GET response: - body: '{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[{"id":"21dea5d1-b3c1-4f07-a92b-764a0500ce49","status":"ready","ip_address":"10.64.160.125","created_at":"2021-05-17T12:46:00.472338Z","updated_at":"2021-05-17T12:47:44.595145Z","region":"fr-par","zone":"fr-par-1"},{"id":"3ec10a2a-47b1-4a78-903e-6a86b2e7fdcf","status":"ready","ip_address":"10.70.58.93","created_at":"2021-05-17T12:34:55.661808Z","updated_at":"2021-05-17T12:47:45.261421Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:05:24.354312Z","region":"fr-par","zone":"fr-par-1"},{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:05:24.751564Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1229" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:46 GMT + - Thu, 04 Nov 2021 13:05:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,73 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc89323b-3118-4f6b-8bae-7b8bc7c4d992 + - 29e1cdfc-02e2-4de7-b741-a5d8dc161ff7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:05:54 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2ef2e8fa-01fa-4bd0-9b88-4400451cfd0e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798 + method: GET + response: + body: '{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:05:24.354312Z","region":"fr-par","zone":"fr-par-1"},{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:05:24.751564Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1273" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:05:54 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 46cbc2ed-7768-4353-b7d0-8986931c198b status: 200 OK code: 200 duration: "" @@ -210,21 +276,87 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/41c8db39-ba1a-4445-84f8-7eac36893cc7/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798/backends method: POST response: - body: '{"id":"f160bc0f-5b8c-4578-a67b-92a23a7f9082","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[{"id":"21dea5d1-b3c1-4f07-a92b-764a0500ce49","status":"ready","ip_address":"10.64.160.125","created_at":"2021-05-17T12:46:00.472338Z","updated_at":"2021-05-17T12:47:44.595145Z","region":"fr-par","zone":"fr-par-1"},{"id":"3ec10a2a-47b1-4a78-903e-6a86b2e7fdcf","status":"ready","ip_address":"10.70.58.93","created_at":"2021-05-17T12:34:55.661808Z","updated_at":"2021-05-17T12:47:45.261421Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.510381718Z","updated_at":"2021-05-17T12:47:46.510381718Z"}' + body: '{"id":"8e976c75-40bd-4aa9-b39e-2e71bf004662","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"pending","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:05:54.599574970Z","region":"fr-par","zone":"fr-par-1"},{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"pending","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:05:54.667374248Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:05:54.558801044Z","updated_at":"2021-11-04T13:05:54.558801044Z"}' + headers: + Content-Length: + - "1903" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:05:54 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 15848ea5-5211-46f0-9fa8-1a9fd2906f70 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8e976c75-40bd-4aa9-b39e-2e71bf004662 + method: GET + response: + body: '{"id":"8e976c75-40bd-4aa9-b39e-2e71bf004662","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"pending","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:05:54.667374Z","region":"fr-par","zone":"fr-par-1"},{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"pending","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:05:54.599575Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:05:54.558801Z","updated_at":"2021-11-04T13:05:54.558801Z"}' + headers: + Content-Length: + - "1891" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:05:55 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 65e6fd8a-fa1a-4248-98d4-a2de781c8d73 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 + method: GET + response: + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1849" + - "314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:46 GMT + - Thu, 04 Nov 2021 13:05:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -234,7 +366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e776552-9447-44e1-a5aa-d91c2e983d95 + - 2add4c52-f4e7-4bc0-94e1-bdde48d4d8b0 status: 200 OK code: 200 duration: "" @@ -243,21 +375,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f160bc0f-5b8c-4578-a67b-92a23a7f9082 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798 method: GET response: - body: '{"id":"f160bc0f-5b8c-4578-a67b-92a23a7f9082","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.510382Z","updated_at":"2021-05-17T12:47:46.510382Z"}' + body: '{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:05:55.139912Z","region":"fr-par","zone":"fr-par-1"},{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:05:55.120842Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1418" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:46 GMT + - Thu, 04 Nov 2021 13:05:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -267,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60a799c8-683d-4bf5-a5b8-c668063a6fb7 + - 7208d31c-41be-4cd7-8047-71386f8c40a3 status: 200 OK code: 200 duration: "" @@ -276,21 +408,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb75edc9-bede-402f-8a14-9845e4ecb22d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "310" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:47 GMT + - Thu, 04 Nov 2021 13:05:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +432,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8224c12c-8c37-442d-89ff-09e51c98e396 + - 2f30345e-be9b-4e22-8b58-c9c7b04fc46c status: 200 OK code: 200 duration: "" @@ -309,21 +441,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/41c8db39-ba1a-4445-84f8-7eac36893cc7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8e976c75-40bd-4aa9-b39e-2e71bf004662 method: GET response: - body: '{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[{"id":"21dea5d1-b3c1-4f07-a92b-764a0500ce49","status":"ready","ip_address":"10.64.160.125","created_at":"2021-05-17T12:46:00.472338Z","updated_at":"2021-05-17T12:47:46.935989Z","region":"fr-par","zone":"fr-par-1"},{"id":"3ec10a2a-47b1-4a78-903e-6a86b2e7fdcf","status":"ready","ip_address":"10.70.58.93","created_at":"2021-05-17T12:34:55.661808Z","updated_at":"2021-05-17T12:47:47.166242Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"8e976c75-40bd-4aa9-b39e-2e71bf004662","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:05:55.120842Z","region":"fr-par","zone":"fr-par-1"},{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:05:55.139912Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:05:54.558801Z","updated_at":"2021-11-04T13:05:54.558801Z"}' headers: Content-Length: - - "1229" + - "1887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:47 GMT + - Thu, 04 Nov 2021 13:05:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +465,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f2a39ce-9c5c-40f4-9f9c-90e5c6577c45 + - d7eb3288-2a4e-48e4-ad70-71d9c2d199cc status: 200 OK code: 200 duration: "" @@ -342,21 +474,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f160bc0f-5b8c-4578-a67b-92a23a7f9082 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"f160bc0f-5b8c-4578-a67b-92a23a7f9082","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.510382Z","updated_at":"2021-05-17T12:47:46.510382Z"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1418" + - "314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:47 GMT + - Thu, 04 Nov 2021 13:05:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +498,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e762ecd5-fbc0-40ad-88b8-adef5a359bc1 + - 30d1293a-0bcd-4b3a-846d-c33c31d1c28c status: 200 OK code: 200 duration: "" @@ -375,21 +507,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb75edc9-bede-402f-8a14-9845e4ecb22d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798 method: GET response: - body: '{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:05:55.139912Z","region":"fr-par","zone":"fr-par-1"},{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:05:55.120842Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "310" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:48 GMT + - Thu, 04 Nov 2021 13:05:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +531,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0092860-bfca-48e1-953c-13a22b9fd4b8 + - 07874404-f530-488a-86f0-c6085cf69636 status: 200 OK code: 200 duration: "" @@ -408,21 +540,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/41c8db39-ba1a-4445-84f8-7eac36893cc7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[{"id":"21dea5d1-b3c1-4f07-a92b-764a0500ce49","status":"ready","ip_address":"10.64.160.125","created_at":"2021-05-17T12:46:00.472338Z","updated_at":"2021-05-17T12:47:46.935989Z","region":"fr-par","zone":"fr-par-1"},{"id":"3ec10a2a-47b1-4a78-903e-6a86b2e7fdcf","status":"ready","ip_address":"10.70.58.93","created_at":"2021-05-17T12:34:55.661808Z","updated_at":"2021-05-17T12:47:47.166242Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1229" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:48 GMT + - Thu, 04 Nov 2021 13:05:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,7 +564,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15518eae-df80-483f-b0ef-f4e162f55248 + - 614f12b0-5a44-4ca3-965e-f1831aca0a0f status: 200 OK code: 200 duration: "" @@ -441,21 +573,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f160bc0f-5b8c-4578-a67b-92a23a7f9082 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8e976c75-40bd-4aa9-b39e-2e71bf004662 method: GET response: - body: '{"id":"f160bc0f-5b8c-4578-a67b-92a23a7f9082","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.510382Z","updated_at":"2021-05-17T12:47:46.510382Z"}' + body: '{"id":"8e976c75-40bd-4aa9-b39e-2e71bf004662","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:05:55.120842Z","region":"fr-par","zone":"fr-par-1"},{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:05:55.139912Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:05:54.558801Z","updated_at":"2021-11-04T13:05:54.558801Z"}' headers: Content-Length: - - "1418" + - "1887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:49 GMT + - Thu, 04 Nov 2021 13:05:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -465,7 +597,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ea8085e-0ad1-4939-b004-3e8c1ec6130e + - f8696ac1-8a00-4d03-b838-074d6fcb95b5 status: 200 OK code: 200 duration: "" @@ -476,21 +608,21 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f160bc0f-5b8c-4578-a67b-92a23a7f9082 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8e976c75-40bd-4aa9-b39e-2e71bf004662 method: PUT response: - body: '{"id":"f160bc0f-5b8c-4578-a67b-92a23a7f9082","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.510382Z","updated_at":"2021-05-17T12:47:49.629964476Z"}' + body: '{"id":"8e976c75-40bd-4aa9-b39e-2e71bf004662","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:05:55.120842Z","region":"fr-par","zone":"fr-par-1"},{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:05:55.139912Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:05:54.558801Z","updated_at":"2021-11-04T13:05:54.558801Z"}' headers: Content-Length: - - "1421" + - "1887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:49 GMT + - Thu, 04 Nov 2021 13:05:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,7 +632,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bb6ea5a-17d7-4c17-9ea9-003363def1a0 + - cf5f16d3-f89b-495d-a9e6-eaa352d091ce status: 200 OK code: 200 duration: "" @@ -511,9 +643,9 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f160bc0f-5b8c-4578-a67b-92a23a7f9082/healthcheck + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8e976c75-40bd-4aa9-b39e-2e71bf004662/healthcheck method: PUT response: body: '{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"http_config":{"uri":"http://test.com/health","method":"POST","code":404}}' @@ -525,7 +657,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:50 GMT + - Thu, 04 Nov 2021 13:05:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -535,7 +667,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf9e370d-53cc-4f1e-bc3e-4ad16b6addf4 + - 27a7e9ec-f40b-43c9-95a8-c650c290b53b status: 200 OK code: 200 duration: "" @@ -546,21 +678,21 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f160bc0f-5b8c-4578-a67b-92a23a7f9082/servers + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8e976c75-40bd-4aa9-b39e-2e71bf004662/servers method: PUT response: - body: '{"id":"f160bc0f-5b8c-4578-a67b-92a23a7f9082","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"http_config":{"uri":"http://test.com/health","method":"POST","code":404}},"pool":[],"lb":{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.510382Z","updated_at":"2021-05-17T12:47:50.253061953Z"}' + body: '{"id":"8e976c75-40bd-4aa9-b39e-2e71bf004662","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"http_config":{"uri":"http://test.com/health","method":"POST","code":404}},"pool":[],"lb":{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:05:57.401655Z","region":"fr-par","zone":"fr-par-1"},{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:05:57.486140Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:05:54.558801Z","updated_at":"2021-11-04T13:05:54.558801Z"}' headers: Content-Length: - - "1479" + - "1945" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:51 GMT + - Thu, 04 Nov 2021 13:05:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -570,7 +702,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73bdec54-4c67-4591-b841-ee75372b69a9 + - 9e9a0dcb-cd36-49a2-b0ec-726a2fe1593c status: 200 OK code: 200 duration: "" @@ -579,21 +711,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f160bc0f-5b8c-4578-a67b-92a23a7f9082 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8e976c75-40bd-4aa9-b39e-2e71bf004662 method: GET response: - body: '{"id":"f160bc0f-5b8c-4578-a67b-92a23a7f9082","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"http_config":{"uri":"http://test.com/health","method":"POST","code":404}},"pool":[],"lb":{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.510382Z","updated_at":"2021-05-17T12:47:50.253062Z"}' + body: '{"id":"8e976c75-40bd-4aa9-b39e-2e71bf004662","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"http_config":{"uri":"http://test.com/health","method":"POST","code":404}},"pool":[],"lb":{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:05:57.401655Z","region":"fr-par","zone":"fr-par-1"},{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:05:57.486140Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:05:54.558801Z","updated_at":"2021-11-04T13:05:54.558801Z"}' headers: Content-Length: - - "1476" + - "1945" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:51 GMT + - Thu, 04 Nov 2021 13:05:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -603,7 +735,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ce8cbd2-47e7-425c-8be6-f86e701b7bbe + - 5db2b235-92ee-42d5-879c-341903864907 status: 200 OK code: 200 duration: "" @@ -612,21 +744,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb75edc9-bede-402f-8a14-9845e4ecb22d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "310" + - "314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:52 GMT + - Thu, 04 Nov 2021 13:05:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -636,7 +768,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d787db4d-22d3-4a4a-b974-d8f5d2a36009 + - e1eb8c50-73df-4cb6-9497-a7aba7865145 status: 200 OK code: 200 duration: "" @@ -645,21 +777,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/41c8db39-ba1a-4445-84f8-7eac36893cc7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798 method: GET response: - body: '{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[{"id":"21dea5d1-b3c1-4f07-a92b-764a0500ce49","status":"ready","ip_address":"10.64.160.125","created_at":"2021-05-17T12:46:00.472338Z","updated_at":"2021-05-17T12:47:50.917206Z","region":"fr-par","zone":"fr-par-1"},{"id":"3ec10a2a-47b1-4a78-903e-6a86b2e7fdcf","status":"pending","ip_address":"10.70.58.93","created_at":"2021-05-17T12:34:55.661808Z","updated_at":"2021-05-17T12:47:51.350534Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:05:57.486140Z","region":"fr-par","zone":"fr-par-1"},{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:05:57.401655Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1231" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:52 GMT + - Thu, 04 Nov 2021 13:05:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -669,7 +801,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a972582-52af-4d60-8f84-0f1b15a73a9a + - 8568bdc7-ee05-406f-81c1-5f0c5edecd8d status: 200 OK code: 200 duration: "" @@ -678,21 +810,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f160bc0f-5b8c-4578-a67b-92a23a7f9082 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"f160bc0f-5b8c-4578-a67b-92a23a7f9082","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"http_config":{"uri":"http://test.com/health","method":"POST","code":404}},"pool":[],"lb":{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.510382Z","updated_at":"2021-05-17T12:47:50.253062Z"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1476" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:52 GMT + - Thu, 04 Nov 2021 13:05:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -702,7 +834,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c555a68b-2345-480c-a47f-576a9221bfe8 + - d16f8fcc-565b-48c4-a2bf-3ee1feed239f status: 200 OK code: 200 duration: "" @@ -711,21 +843,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb75edc9-bede-402f-8a14-9845e4ecb22d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8e976c75-40bd-4aa9-b39e-2e71bf004662 method: GET response: - body: '{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"8e976c75-40bd-4aa9-b39e-2e71bf004662","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"http_config":{"uri":"http://test.com/health","method":"POST","code":404}},"pool":[],"lb":{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:05:57.401655Z","region":"fr-par","zone":"fr-par-1"},{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:05:57.486140Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:05:54.558801Z","updated_at":"2021-11-04T13:05:54.558801Z"}' headers: Content-Length: - - "310" + - "1945" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:53 GMT + - Thu, 04 Nov 2021 13:05:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -735,7 +867,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 002d42eb-e337-462a-a561-aff52c833c6a + - 289f79fc-7111-4af6-88f2-f23a784998a2 status: 200 OK code: 200 duration: "" @@ -744,21 +876,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/41c8db39-ba1a-4445-84f8-7eac36893cc7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[{"id":"21dea5d1-b3c1-4f07-a92b-764a0500ce49","status":"ready","ip_address":"10.64.160.125","created_at":"2021-05-17T12:46:00.472338Z","updated_at":"2021-05-17T12:47:53.189599Z","region":"fr-par","zone":"fr-par-1"},{"id":"3ec10a2a-47b1-4a78-903e-6a86b2e7fdcf","status":"ready","ip_address":"10.70.58.93","created_at":"2021-05-17T12:34:55.661808Z","updated_at":"2021-05-17T12:47:53.426080Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1229" + - "314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:53 GMT + - Thu, 04 Nov 2021 13:05:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -768,7 +900,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6573103b-de3a-4de1-9f3b-da9831993d9f + - 06c23b32-6a46-4522-81f7-9707ab1a04ac status: 200 OK code: 200 duration: "" @@ -777,21 +909,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f160bc0f-5b8c-4578-a67b-92a23a7f9082 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798 method: GET response: - body: '{"id":"f160bc0f-5b8c-4578-a67b-92a23a7f9082","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"http_config":{"uri":"http://test.com/health","method":"POST","code":404}},"pool":[],"lb":{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.510382Z","updated_at":"2021-05-17T12:47:50.253062Z"}' + body: '{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:05:57.486140Z","region":"fr-par","zone":"fr-par-1"},{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:05:57.401655Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1476" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:53 GMT + - Thu, 04 Nov 2021 13:05:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -801,7 +933,73 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 536b879b-7f26-484b-a346-ff0b8ac8d0c3 + - a5b1d0c0-5e54-4d77-8dd7-0c3f86ecd2df + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:05:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 28c19959-5ddc-41ba-8d0a-d3e44099e52a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8e976c75-40bd-4aa9-b39e-2e71bf004662 + method: GET + response: + body: '{"id":"8e976c75-40bd-4aa9-b39e-2e71bf004662","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"http_config":{"uri":"http://test.com/health","method":"POST","code":404}},"pool":[],"lb":{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:05:57.401655Z","region":"fr-par","zone":"fr-par-1"},{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:05:57.486140Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:05:54.558801Z","updated_at":"2021-11-04T13:05:54.558801Z"}' + headers: + Content-Length: + - "1945" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:05:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ff7f9266-5f57-44b6-9045-9188985b50f8 status: 200 OK code: 200 duration: "" @@ -812,21 +1010,21 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f160bc0f-5b8c-4578-a67b-92a23a7f9082 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8e976c75-40bd-4aa9-b39e-2e71bf004662 method: PUT response: - body: '{"id":"f160bc0f-5b8c-4578-a67b-92a23a7f9082","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"http_config":{"uri":"http://test.com/health","method":"POST","code":404}},"pool":[],"lb":{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.510382Z","updated_at":"2021-05-17T12:47:54.570075321Z"}' + body: '{"id":"8e976c75-40bd-4aa9-b39e-2e71bf004662","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"http_config":{"uri":"http://test.com/health","method":"POST","code":404}},"pool":[],"lb":{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:05:57.401655Z","region":"fr-par","zone":"fr-par-1"},{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:05:57.486140Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:05:54.558801Z","updated_at":"2021-11-04T13:05:54.558801Z"}' headers: Content-Length: - - "1479" + - "1945" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:54 GMT + - Thu, 04 Nov 2021 13:05:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -836,7 +1034,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60663646-8714-4af3-8874-78e91eed6917 + - 74f9d987-a00f-43fa-ba96-5a9f44aecd95 status: 200 OK code: 200 duration: "" @@ -847,9 +1045,9 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f160bc0f-5b8c-4578-a67b-92a23a7f9082/healthcheck + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8e976c75-40bd-4aa9-b39e-2e71bf004662/healthcheck method: PUT response: body: '{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"https_config":{"uri":"http://test.com/health","method":"POST","code":404}}' @@ -861,7 +1059,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:55 GMT + - Thu, 04 Nov 2021 13:06:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -871,7 +1069,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af17e89b-e409-4e9b-b8f9-18960f746d83 + - dd96da18-d8e2-4429-b07b-cbd0823ab422 status: 200 OK code: 200 duration: "" @@ -882,21 +1080,21 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f160bc0f-5b8c-4578-a67b-92a23a7f9082/servers + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8e976c75-40bd-4aa9-b39e-2e71bf004662/servers method: PUT response: - body: '{"id":"f160bc0f-5b8c-4578-a67b-92a23a7f9082","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"https_config":{"uri":"http://test.com/health","method":"POST","code":404}},"pool":[],"lb":{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.510382Z","updated_at":"2021-05-17T12:47:55.148358879Z"}' + body: '{"id":"8e976c75-40bd-4aa9-b39e-2e71bf004662","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"https_config":{"uri":"http://test.com/health","method":"POST","code":404}},"pool":[],"lb":{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:06:00.268604Z","region":"fr-par","zone":"fr-par-1"},{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:06:00.288306Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:05:54.558801Z","updated_at":"2021-11-04T13:05:54.558801Z"}' headers: Content-Length: - - "1480" + - "1946" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:55 GMT + - Thu, 04 Nov 2021 13:06:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -906,7 +1104,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54c37205-065c-4c2d-9e2e-5d4de74be892 + - 3986736f-0702-4129-b6cd-f11a2b452f4b status: 200 OK code: 200 duration: "" @@ -915,21 +1113,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f160bc0f-5b8c-4578-a67b-92a23a7f9082 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8e976c75-40bd-4aa9-b39e-2e71bf004662 method: GET response: - body: '{"id":"f160bc0f-5b8c-4578-a67b-92a23a7f9082","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"https_config":{"uri":"http://test.com/health","method":"POST","code":404}},"pool":[],"lb":{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.510382Z","updated_at":"2021-05-17T12:47:55.148359Z"}' + body: '{"id":"8e976c75-40bd-4aa9-b39e-2e71bf004662","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"https_config":{"uri":"http://test.com/health","method":"POST","code":404}},"pool":[],"lb":{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:06:00.268604Z","region":"fr-par","zone":"fr-par-1"},{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:06:00.288306Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:05:54.558801Z","updated_at":"2021-11-04T13:05:54.558801Z"}' headers: Content-Length: - - "1477" + - "1946" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:55 GMT + - Thu, 04 Nov 2021 13:06:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -939,7 +1137,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e97968a5-7bf6-45d2-abb7-310641a0d837 + - 246f5389-d8a5-486b-ac92-e91299f9db7b status: 200 OK code: 200 duration: "" @@ -948,21 +1146,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb75edc9-bede-402f-8a14-9845e4ecb22d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "310" + - "314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:56 GMT + - Thu, 04 Nov 2021 13:06:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -972,7 +1170,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc13cf03-373d-405f-94b0-4d8d8f997fc5 + - 2010404d-8ef8-4fe3-8a10-14cc193a22a5 status: 200 OK code: 200 duration: "" @@ -981,21 +1179,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/41c8db39-ba1a-4445-84f8-7eac36893cc7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798 method: GET response: - body: '{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[{"id":"21dea5d1-b3c1-4f07-a92b-764a0500ce49","status":"ready","ip_address":"10.64.160.125","created_at":"2021-05-17T12:46:00.472338Z","updated_at":"2021-05-17T12:47:56.461192Z","region":"fr-par","zone":"fr-par-1"},{"id":"3ec10a2a-47b1-4a78-903e-6a86b2e7fdcf","status":"pending","ip_address":"10.70.58.93","created_at":"2021-05-17T12:34:55.661808Z","updated_at":"2021-05-17T12:47:55.242538Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:06:00.288306Z","region":"fr-par","zone":"fr-par-1"},{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:06:00.268604Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1231" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:56 GMT + - Thu, 04 Nov 2021 13:06:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1005,7 +1203,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 309f6dc6-1878-4ecd-b80d-7434d405de5c + - 16f0da1c-6fcd-47a4-81ff-bdf5479236c0 status: 200 OK code: 200 duration: "" @@ -1014,21 +1212,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f160bc0f-5b8c-4578-a67b-92a23a7f9082 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"f160bc0f-5b8c-4578-a67b-92a23a7f9082","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"https_config":{"uri":"http://test.com/health","method":"POST","code":404}},"pool":[],"lb":{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:46.027297Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.510382Z","updated_at":"2021-05-17T12:47:55.148359Z"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1477" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:56 GMT + - Thu, 04 Nov 2021 13:06:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1038,7 +1236,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c22cd17-e2ea-445f-825c-ac486ba92cea + - 8f725964-7508-4e9f-aa14-17adc563c4a1 status: 200 OK code: 200 duration: "" @@ -1047,19 +1245,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f160bc0f-5b8c-4578-a67b-92a23a7f9082 - method: DELETE + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8e976c75-40bd-4aa9-b39e-2e71bf004662 + method: GET response: - body: "" + body: '{"id":"8e976c75-40bd-4aa9-b39e-2e71bf004662","name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"https_config":{"uri":"http://test.com/health","method":"POST","code":404}},"pool":[],"lb":{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:06:00.268604Z","region":"fr-par","zone":"fr-par-1"},{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:06:00.288306Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:05:54.558801Z","updated_at":"2021-11-04T13:05:54.558801Z"}' headers: + Content-Length: + - "1946" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:58 GMT + - Thu, 04 Nov 2021 13:06:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1069,18 +1269,18 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d214adb6-1deb-43b4-924c-9a2c8e411dfc - status: 204 No Content - code: 204 + - ef5535fc-8561-4209-b5f7-add4ef7f7f41 + status: 200 OK + code: 200 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/41c8db39-ba1a-4445-84f8-7eac36893cc7?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8e976c75-40bd-4aa9-b39e-2e71bf004662 method: DELETE response: body: "" @@ -1090,7 +1290,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:58 GMT + - Thu, 04 Nov 2021 13:06:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1100,7 +1300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 474b6ef6-c2e1-4de0-ae2c-c8de582078e1 + - 4fbe924d-7be9-4b06-9433-75700bc71152 status: 204 No Content code: 204 duration: "" @@ -1109,21 +1309,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/41c8db39-ba1a-4445-84f8-7eac36893cc7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798 method: GET response: - body: '{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"pending","instances":[{"id":"21dea5d1-b3c1-4f07-a92b-764a0500ce49","status":"pending","ip_address":"10.64.160.125","created_at":"2021-05-17T12:46:00.472338Z","updated_at":"2021-05-17T12:47:57.814478Z","region":"fr-par","zone":"fr-par-1"},{"id":"3ec10a2a-47b1-4a78-903e-6a86b2e7fdcf","status":"pending","ip_address":"10.70.58.93","created_at":"2021-05-17T12:34:55.661808Z","updated_at":"2021-05-17T12:47:57.921231Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:58.158556Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"ready","instances":[{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:06:02.609082Z","region":"fr-par","zone":"fr-par-1"},{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:06:02.610318Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:05:25.020778Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1235" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:58 GMT + - Thu, 04 Nov 2021 13:06:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1133,7 +1333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffd2fafb-aefe-43e7-bfae-8505e8a3176a + - cbd06246-3069-449e-8330-e2687feda705 status: 200 OK code: 200 duration: "" @@ -1142,21 +1342,19 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/41c8db39-ba1a-4445-84f8-7eac36893cc7 - method: GET + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798?release_ip=false + method: DELETE response: - body: '{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"pending","instances":[{"id":"21dea5d1-b3c1-4f07-a92b-764a0500ce49","status":"ready","ip_address":"10.64.160.125","created_at":"2021-05-17T12:46:00.472338Z","updated_at":"2021-05-17T12:47:59.435405Z","region":"fr-par","zone":"fr-par-1"},{"id":"3ec10a2a-47b1-4a78-903e-6a86b2e7fdcf","status":"ready","ip_address":"10.70.58.93","created_at":"2021-05-17T12:34:55.661808Z","updated_at":"2021-05-17T12:47:59.673525Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb75edc9-bede-402f-8a14-9845e4ecb22d","ip_address":"51.159.75.62","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","reverse":"51-159-75-62.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:58.158556Z","region":"fr-par","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "1231" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:48:00 GMT + - Thu, 04 Nov 2021 13:06:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1166,30 +1364,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9a450dc-c2f8-4f8a-a3e4-6acc96e0862d - status: 200 OK - code: 200 + - 8fd1590f-9caa-4846-95e4-3fd401b070a1 + status: 204 No Content + code: 204 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/41c8db39-ba1a-4445-84f8-7eac36893cc7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798 method: GET response: - body: '{"id":"41c8db39-ba1a-4445-84f8-7eac36893cc7","name":"test-lb","description":"","status":"pending","instances":[{"id":"21dea5d1-b3c1-4f07-a92b-764a0500ce49","status":"ready","ip_address":"10.64.160.125","created_at":"2021-05-17T12:46:00.472338Z","updated_at":"2021-05-17T12:47:59.435405Z","region":"fr-par","zone":"fr-par-1"},{"id":"3ec10a2a-47b1-4a78-903e-6a86b2e7fdcf","status":"ready","ip_address":"10.70.58.93","created_at":"2021-05-17T12:34:55.661808Z","updated_at":"2021-05-17T12:47:59.673525Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.001547Z","updated_at":"2021-05-17T12:47:58.158556Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","name":"test-lb","description":"","status":"pending","instances":[{"id":"22345903-7d89-4c3c-83e5-c1f930a514a7","status":"ready","ip_address":"10.68.76.99","created_at":"2021-11-04T13:03:49.675366Z","updated_at":"2021-11-04T13:06:02.609082Z","region":"fr-par","zone":"fr-par-1"},{"id":"7f499e4d-3937-47c4-ba9c-a976577509e8","status":"ready","ip_address":"10.74.20.17","created_at":"2021-11-04T13:03:47.262767Z","updated_at":"2021-11-04T13:06:02.610318Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"104436a3-5e1b-40dd-a0eb-a8a6fcf41798","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:05:23.945275Z","updated_at":"2021-11-04T13:06:02.806214Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "921" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:48:02 GMT + - Thu, 04 Nov 2021 13:06:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1199,7 +1397,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28bf78fc-b76a-4ad5-9012-38b850fa1579 + - 994ce542-6f9e-40f1-a71b-d7e2ce393b1b status: 200 OK code: 200 duration: "" @@ -1208,9 +1406,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/41c8db39-ba1a-4445-84f8-7eac36893cc7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/104436a3-5e1b-40dd-a0eb-a8a6fcf41798 method: GET response: body: '{"message":"lbs not Found"}' @@ -1222,7 +1420,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:48:04 GMT + - Thu, 04 Nov 2021 13:06:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1232,7 +1430,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90cabf92-7ca5-4c2b-bedc-b9b36cab95b1 + - 3d5ede7b-7118-4c90-aded-116f57743138 status: 404 Not Found code: 404 duration: "" @@ -1241,9 +1439,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb75edc9-bede-402f-8a14-9845e4ecb22d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: DELETE response: body: "" @@ -1253,7 +1451,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:48:05 GMT + - Thu, 04 Nov 2021 13:06:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1263,7 +1461,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed6a2d3d-6388-4bfc-aa16-f5073158b278 + - 3186fe1b-757f-4812-b21f-0a212753ecfb status: 204 No Content code: 204 duration: "" @@ -1272,9 +1470,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f160bc0f-5b8c-4578-a67b-92a23a7f9082 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8e976c75-40bd-4aa9-b39e-2e71bf004662 method: GET response: body: '{"message":"backend_id not Found"}' @@ -1286,7 +1484,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:48:05 GMT + - Thu, 04 Nov 2021 13:06:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1296,7 +1494,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02a33ebf-7634-46f6-abd1-40e6af381c73 + - a052feb4-d724-4304-92db-a8e7e43c087c status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/lb-certificate-basic.cassette.yaml b/scaleway/testdata/lb-certificate-basic.cassette.yaml index 5602ac647c..2ce88c2970 100644 --- a/scaleway/testdata/lb-certificate-basic.cassette.yaml +++ b/scaleway/testdata/lb-certificate-basic.cassette.yaml @@ -2,18 +2,18 @@ version: 1 interactions: - request: - body: '{"project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","reverse":null}' + body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","reverse":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "280" @@ -22,7 +22,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:43 GMT + - Thu, 04 Nov 2021 13:06:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bb19adc-4fae-4c36-8f9e-d512a8740d1d + - de24fe9a-2f3c-4270-93f7-923f654ea61f status: 200 OK code: 200 duration: "" @@ -41,12 +41,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbec8086-4ec8-460b-8c92-29ad6405d2f5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "280" @@ -55,7 +55,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:43 GMT + - Thu, 04 Nov 2021 13:06:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,32 +65,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0e49a63-d530-4af4-b76c-ac877d6fd94d + - a60d360d-6fbc-4a84-97d3-d7cca34a8b52 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","name":"test-lb","description":"","ip_id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' + body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","name":"test-lb","description":"","ip_id":"a7972715-724c-448c-85b2-640ffc655a09","tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140146Z","updated_at":"2021-05-17T12:47:44.026140146Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079552614Z","updated_at":"2021-11-04T13:06:46.079552614Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "816" + - "858" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:44 GMT + - Thu, 04 Nov 2021 13:06:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f7009c4-a2e0-4051-9f6e-d5fca7f43b5b + - 126db8d5-a067-49b5-9b4e-42ac7ab98d46 status: 200 OK code: 200 duration: "" @@ -109,21 +109,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6 method: GET response: - body: '{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:44.026140Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:06:46.079553Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "810" + - "852" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:44 GMT + - Thu, 04 Nov 2021 13:06:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2264396-ba1f-46aa-87ec-b1d5d5ddfb17 + - ba21153a-c019-4e3b-8d63-4b79246f21e8 status: 200 OK code: 200 duration: "" @@ -142,21 +142,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6 method: GET response: - body: '{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"pending","instances":[{"id":"0724ef8c-b934-4216-bf01-ea76834e02c7","status":"ready","ip_address":"10.73.110.45","created_at":"2021-05-17T12:37:00.637202Z","updated_at":"2021-05-17T12:47:45.093842Z","region":"fr-par","zone":"fr-par-1"},{"id":"ba8fd06f-5eed-4142-8594-e05bd8ee4cc9","status":"ready","ip_address":"10.70.8.139","created_at":"2021-05-17T12:44:07.327394Z","updated_at":"2021-05-17T12:47:45.666451Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:44.399095Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[{"id":"31bc3338-9445-402c-8335-86563f9b1212","status":"ready","ip_address":"10.65.140.105","created_at":"2021-11-04T13:05:27.492304Z","updated_at":"2021-11-04T13:06:46.808855Z","region":"fr-par","zone":"fr-par-1"},{"id":"2f1eb552-7b15-4c98-8b94-fbb439a63bb4","status":"ready","ip_address":"10.68.28.69","created_at":"2021-11-04T10:44:27.242340Z","updated_at":"2021-11-04T13:06:46.988624Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:06:47.268900Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1234" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:46 GMT + - Thu, 04 Nov 2021 13:07:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6cb3db72-f860-4b08-8ece-1681cbf14415 + - 8522def7-a1c3-45df-916a-0781124d48eb status: 200 OK code: 200 duration: "" @@ -175,21 +175,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6 method: GET response: - body: '{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[{"id":"0724ef8c-b934-4216-bf01-ea76834e02c7","status":"ready","ip_address":"10.73.110.45","created_at":"2021-05-17T12:37:00.637202Z","updated_at":"2021-05-17T12:47:45.093842Z","region":"fr-par","zone":"fr-par-1"},{"id":"ba8fd06f-5eed-4142-8594-e05bd8ee4cc9","status":"ready","ip_address":"10.70.8.139","created_at":"2021-05-17T12:44:07.327394Z","updated_at":"2021-05-17T12:47:45.666451Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:46.329065Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[{"id":"31bc3338-9445-402c-8335-86563f9b1212","status":"ready","ip_address":"10.65.140.105","created_at":"2021-11-04T13:05:27.492304Z","updated_at":"2021-11-04T13:06:46.808855Z","region":"fr-par","zone":"fr-par-1"},{"id":"2f1eb552-7b15-4c98-8b94-fbb439a63bb4","status":"ready","ip_address":"10.68.28.69","created_at":"2021-11-04T10:44:27.242340Z","updated_at":"2021-11-04T13:06:46.988624Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:06:47.268900Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1232" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:48 GMT + - Thu, 04 Nov 2021 13:07:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad5e269a-d4b3-4d82-bdf4-9f347386cd2d + - 8f6cc3a6-c17d-4b90-9bce-817b654b053e status: 200 OK code: 200 duration: "" @@ -208,21 +208,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[{"id":"0724ef8c-b934-4216-bf01-ea76834e02c7","status":"ready","ip_address":"10.73.110.45","created_at":"2021-05-17T12:37:00.637202Z","updated_at":"2021-05-17T12:47:45.093842Z","region":"fr-par","zone":"fr-par-1"},{"id":"ba8fd06f-5eed-4142-8594-e05bd8ee4cc9","status":"ready","ip_address":"10.70.8.139","created_at":"2021-05-17T12:44:07.327394Z","updated_at":"2021-05-17T12:47:45.666451Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:46.329065Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1232" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:48 GMT + - Thu, 04 Nov 2021 13:07:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,32 +232,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5bfbc53-2f43-44bf-835b-407e3c550be8 + - ed3defa1-a9a3-4bf5-a1c8-3c2eb12a862f status: 200 OK code: 200 duration: "" - request: - body: '{"name":"test-cert","letsencrypt":{"common_name":"51-159-113-213.lb.fr-par.scw.cloud","subject_alternative_name":null}}' + body: '{"name":"test-cert","letsencrypt":{"common_name":"195-154-70-164.lb.fr-par.scw.cloud","subject_alternative_name":null}}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540/certificates + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6/certificates method: POST response: - body: '{"id":"631b15e0-0286-4060-b6a9-35e2cfd86c60","type":"letsencryt","status":"pending","common_name":"51-159-113-213.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[{"id":"0724ef8c-b934-4216-bf01-ea76834e02c7","status":"ready","ip_address":"10.73.110.45","created_at":"2021-05-17T12:37:00.637202Z","updated_at":"2021-05-17T12:47:45.093842Z","region":"fr-par","zone":"fr-par-1"},{"id":"ba8fd06f-5eed-4142-8594-e05bd8ee4cc9","status":"ready","ip_address":"10.70.8.139","created_at":"2021-05-17T12:44:07.327394Z","updated_at":"2021-05-17T12:47:45.666451Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889091Z","region":"fr-par","zone":"fr-par-1"},"name":"test-cert","created_at":"2021-05-17T12:47:49.071218738Z","updated_at":"2021-05-17T12:47:49.071218738Z"}' + body: '{"id":"78eb04c9-1a1a-4342-b7ea-c20d1fbffa51","type":"letsencryt","status":"pending","common_name":"195-154-70-164.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[{"id":"31bc3338-9445-402c-8335-86563f9b1212","status":"ready","ip_address":"10.65.140.105","created_at":"2021-11-04T13:05:27.492304Z","updated_at":"2021-11-04T13:06:46.808855Z","region":"fr-par","zone":"fr-par-1"},{"id":"2f1eb552-7b15-4c98-8b94-fbb439a63bb4","status":"ready","ip_address":"10.68.28.69","created_at":"2021-11-04T10:44:27.242340Z","updated_at":"2021-11-04T13:06:46.988624Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761406Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"name":"test-cert","created_at":"2021-11-04T13:07:16.683416989Z","updated_at":"2021-11-04T13:07:16.683416989Z"}' headers: Content-Length: - - "1617" + - "1660" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:49 GMT + - Thu, 04 Nov 2021 13:07:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -267,7 +267,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1451471-39ef-4524-bdde-cf5c2dc7eac8 + - 9f7beee1-88e9-4528-a18e-980e46da28ac status: 200 OK code: 200 duration: "" @@ -276,21 +276,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/631b15e0-0286-4060-b6a9-35e2cfd86c60 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/78eb04c9-1a1a-4342-b7ea-c20d1fbffa51 method: GET response: - body: '{"id":"631b15e0-0286-4060-b6a9-35e2cfd86c60","type":"letsencryt","status":"pending","common_name":"51-159-113-213.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889Z","region":"fr-par","zone":"fr-par-1"},"name":"test-cert","created_at":"2021-05-17T12:47:49.071219Z","updated_at":"2021-05-17T12:47:49.071219Z"}' + body: '{"id":"78eb04c9-1a1a-4342-b7ea-c20d1fbffa51","type":"letsencryt","status":"pending","common_name":"195-154-70-164.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"name":"test-cert","created_at":"2021-11-04T13:07:16.683417Z","updated_at":"2021-11-04T13:07:16.683417Z"}' headers: Content-Length: - - "1184" + - "1226" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:49 GMT + - Thu, 04 Nov 2021 13:07:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e67d43d2-7bb4-4b2e-8b14-7021a701dc61 + - b1f16c04-cfd4-4840-b4ad-b8ca091c8ff4 status: 200 OK code: 200 duration: "" @@ -309,12 +309,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbec8086-4ec8-460b-8c92-29ad6405d2f5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "314" @@ -323,7 +323,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:49 GMT + - Thu, 04 Nov 2021 13:07:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8fe748e-fe55-4606-9b63-e50dc95e0f84 + - 4f08f5be-50d0-4fd0-bca7-f79e0c29d38c status: 200 OK code: 200 duration: "" @@ -342,21 +342,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6 method: GET response: - body: '{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[{"id":"0724ef8c-b934-4216-bf01-ea76834e02c7","status":"ready","ip_address":"10.73.110.45","created_at":"2021-05-17T12:37:00.637202Z","updated_at":"2021-05-17T12:47:49.398963Z","region":"fr-par","zone":"fr-par-1"},{"id":"ba8fd06f-5eed-4142-8594-e05bd8ee4cc9","status":"ready","ip_address":"10.70.8.139","created_at":"2021-05-17T12:44:07.327394Z","updated_at":"2021-05-17T12:47:49.530155Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[{"id":"31bc3338-9445-402c-8335-86563f9b1212","status":"ready","ip_address":"10.65.140.105","created_at":"2021-11-04T13:05:27.492304Z","updated_at":"2021-11-04T13:07:16.945867Z","region":"fr-par","zone":"fr-par-1"},{"id":"2f1eb552-7b15-4c98-8b94-fbb439a63bb4","status":"ready","ip_address":"10.68.28.69","created_at":"2021-11-04T10:44:27.242340Z","updated_at":"2021-11-04T13:07:17.173021Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1232" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:50 GMT + - Thu, 04 Nov 2021 13:07:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec9ee498-989a-4cda-bd94-e8d5193f7e84 + - b1ba0aa6-3f40-4092-a525-6eeb26078913 status: 200 OK code: 200 duration: "" @@ -375,21 +375,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/631b15e0-0286-4060-b6a9-35e2cfd86c60 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"631b15e0-0286-4060-b6a9-35e2cfd86c60","type":"letsencryt","status":"pending","common_name":"51-159-113-213.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889Z","region":"fr-par","zone":"fr-par-1"},"name":"test-cert","created_at":"2021-05-17T12:47:49.071219Z","updated_at":"2021-05-17T12:47:49.071219Z"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1184" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:50 GMT + - Thu, 04 Nov 2021 13:07:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae0b4932-ce78-45e4-9fd0-8edda58793d9 + - fd40f922-8394-498e-96fb-641dcba56a19 status: 200 OK code: 200 duration: "" @@ -408,12 +408,45 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbec8086-4ec8-460b-8c92-29ad6405d2f5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/78eb04c9-1a1a-4342-b7ea-c20d1fbffa51 method: GET response: - body: '{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"78eb04c9-1a1a-4342-b7ea-c20d1fbffa51","type":"letsencryt","status":"pending","common_name":"195-154-70-164.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"name":"test-cert","created_at":"2021-11-04T13:07:16.683417Z","updated_at":"2021-11-04T13:07:16.683417Z"}' + headers: + Content-Length: + - "1226" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:07:17 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2e7edbb6-6c55-4470-b324-3683f98909ac + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 + method: GET + response: + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "314" @@ -422,7 +455,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:50 GMT + - Thu, 04 Nov 2021 13:07:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,7 +465,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff7a8246-8c61-4e85-83b4-a256d6aac323 + - f5ea2c8c-4ead-4306-8f8d-5edaf6f6137a status: 200 OK code: 200 duration: "" @@ -441,21 +474,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6 method: GET response: - body: '{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[{"id":"0724ef8c-b934-4216-bf01-ea76834e02c7","status":"ready","ip_address":"10.73.110.45","created_at":"2021-05-17T12:37:00.637202Z","updated_at":"2021-05-17T12:47:49.398963Z","region":"fr-par","zone":"fr-par-1"},{"id":"ba8fd06f-5eed-4142-8594-e05bd8ee4cc9","status":"ready","ip_address":"10.70.8.139","created_at":"2021-05-17T12:44:07.327394Z","updated_at":"2021-05-17T12:47:49.530155Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[{"id":"31bc3338-9445-402c-8335-86563f9b1212","status":"ready","ip_address":"10.65.140.105","created_at":"2021-11-04T13:05:27.492304Z","updated_at":"2021-11-04T13:07:16.945867Z","region":"fr-par","zone":"fr-par-1"},{"id":"2f1eb552-7b15-4c98-8b94-fbb439a63bb4","status":"ready","ip_address":"10.68.28.69","created_at":"2021-11-04T10:44:27.242340Z","updated_at":"2021-11-04T13:07:17.173021Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1232" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:50 GMT + - Thu, 04 Nov 2021 13:07:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -465,7 +498,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9707c4fd-a900-4720-82f9-6be5d0e0d0da + - f9f5dfbe-727c-4e43-a2ea-b600902efe5b status: 200 OK code: 200 duration: "" @@ -474,21 +507,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/631b15e0-0286-4060-b6a9-35e2cfd86c60 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"631b15e0-0286-4060-b6a9-35e2cfd86c60","type":"letsencryt","status":"pending","common_name":"51-159-113-213.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889Z","region":"fr-par","zone":"fr-par-1"},"name":"test-cert","created_at":"2021-05-17T12:47:49.071219Z","updated_at":"2021-05-17T12:47:49.071219Z"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1184" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:51 GMT + - Thu, 04 Nov 2021 13:07:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -498,7 +531,40 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ff58b3d-820e-4170-9cef-92e633131740 + - 74a922bb-32bd-4518-82a0-821628a2b7df + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/78eb04c9-1a1a-4342-b7ea-c20d1fbffa51 + method: GET + response: + body: '{"id":"78eb04c9-1a1a-4342-b7ea-c20d1fbffa51","type":"letsencryt","status":"pending","common_name":"195-154-70-164.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"name":"test-cert","created_at":"2021-11-04T13:07:16.683417Z","updated_at":"2021-11-04T13:07:16.683417Z"}' + headers: + Content-Length: + - "1226" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:07:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e732ee78-9fa2-462a-be38-aea8b65e9778 status: 200 OK code: 200 duration: "" @@ -509,21 +575,21 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/631b15e0-0286-4060-b6a9-35e2cfd86c60 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/78eb04c9-1a1a-4342-b7ea-c20d1fbffa51 method: PUT response: - body: '{"id":"631b15e0-0286-4060-b6a9-35e2cfd86c60","type":"letsencryt","status":"pending","common_name":"51-159-113-213.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889Z","region":"fr-par","zone":"fr-par-1"},"name":"test-cert-new","created_at":"2021-05-17T12:47:49.071219Z","updated_at":"2021-05-17T12:47:51.486623521Z"}' + body: '{"id":"78eb04c9-1a1a-4342-b7ea-c20d1fbffa51","type":"letsencryt","status":"pending","common_name":"195-154-70-164.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"name":"test-cert-new","created_at":"2021-11-04T13:07:16.683417Z","updated_at":"2021-11-04T13:07:18.801065908Z"}' headers: Content-Length: - - "1191" + - "1233" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:51 GMT + - Thu, 04 Nov 2021 13:07:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -533,7 +599,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d81fc672-25e8-43dd-afb2-a46f95b1a1da + - 5f86fd83-6674-4ad1-a1ed-9b3e5e68c329 status: 200 OK code: 200 duration: "" @@ -542,21 +608,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/631b15e0-0286-4060-b6a9-35e2cfd86c60 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/78eb04c9-1a1a-4342-b7ea-c20d1fbffa51 method: GET response: - body: '{"id":"631b15e0-0286-4060-b6a9-35e2cfd86c60","type":"letsencryt","status":"pending","common_name":"51-159-113-213.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889Z","region":"fr-par","zone":"fr-par-1"},"name":"test-cert-new","created_at":"2021-05-17T12:47:49.071219Z","updated_at":"2021-05-17T12:47:51.486624Z"}' + body: '{"id":"78eb04c9-1a1a-4342-b7ea-c20d1fbffa51","type":"letsencryt","status":"pending","common_name":"195-154-70-164.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"name":"test-cert-new","created_at":"2021-11-04T13:07:16.683417Z","updated_at":"2021-11-04T13:07:18.801066Z"}' headers: Content-Length: - - "1188" + - "1230" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:51 GMT + - Thu, 04 Nov 2021 13:07:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -566,7 +632,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a620777-6d90-4437-b1bb-ef088267ae84 + - 95be4b68-b54f-4666-9a5f-2cdfbc01746a status: 200 OK code: 200 duration: "" @@ -575,12 +641,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbec8086-4ec8-460b-8c92-29ad6405d2f5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "314" @@ -589,7 +655,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:52 GMT + - Thu, 04 Nov 2021 13:07:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -599,7 +665,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cc085fc-f58b-4374-9822-9cf2b0e1f670 + - 3773118f-31c9-4ff7-b33a-6c60e888ad3b status: 200 OK code: 200 duration: "" @@ -608,21 +674,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6 method: GET response: - body: '{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[{"id":"0724ef8c-b934-4216-bf01-ea76834e02c7","status":"ready","ip_address":"10.73.110.45","created_at":"2021-05-17T12:37:00.637202Z","updated_at":"2021-05-17T12:47:49.398963Z","region":"fr-par","zone":"fr-par-1"},{"id":"ba8fd06f-5eed-4142-8594-e05bd8ee4cc9","status":"ready","ip_address":"10.70.8.139","created_at":"2021-05-17T12:44:07.327394Z","updated_at":"2021-05-17T12:47:49.530155Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[{"id":"31bc3338-9445-402c-8335-86563f9b1212","status":"ready","ip_address":"10.65.140.105","created_at":"2021-11-04T13:05:27.492304Z","updated_at":"2021-11-04T13:07:16.945867Z","region":"fr-par","zone":"fr-par-1"},{"id":"2f1eb552-7b15-4c98-8b94-fbb439a63bb4","status":"ready","ip_address":"10.68.28.69","created_at":"2021-11-04T10:44:27.242340Z","updated_at":"2021-11-04T13:07:17.173021Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1232" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:52 GMT + - Thu, 04 Nov 2021 13:07:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -632,7 +698,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc322ccb-283a-4252-8a6a-e5936f34c5a5 + - cb8576f5-bbec-48c4-aab3-12e4d5281a32 status: 200 OK code: 200 duration: "" @@ -641,21 +707,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/631b15e0-0286-4060-b6a9-35e2cfd86c60 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"631b15e0-0286-4060-b6a9-35e2cfd86c60","type":"letsencryt","status":"pending","common_name":"51-159-113-213.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889Z","region":"fr-par","zone":"fr-par-1"},"name":"test-cert-new","created_at":"2021-05-17T12:47:49.071219Z","updated_at":"2021-05-17T12:47:51.486624Z"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1188" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:52 GMT + - Thu, 04 Nov 2021 13:07:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -665,7 +731,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ebbff50-caa0-4b6a-aee0-395b8e059fe7 + - 40f8b422-a24b-4c51-8b1e-66a81d415867 status: 200 OK code: 200 duration: "" @@ -674,12 +740,45 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbec8086-4ec8-460b-8c92-29ad6405d2f5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/78eb04c9-1a1a-4342-b7ea-c20d1fbffa51 method: GET response: - body: '{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"78eb04c9-1a1a-4342-b7ea-c20d1fbffa51","type":"letsencryt","status":"pending","common_name":"195-154-70-164.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"name":"test-cert-new","created_at":"2021-11-04T13:07:16.683417Z","updated_at":"2021-11-04T13:07:18.801066Z"}' + headers: + Content-Length: + - "1230" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:07:19 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4c47c4c4-2547-49aa-b98d-d8dd9a40e23e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 + method: GET + response: + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "314" @@ -688,7 +787,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:53 GMT + - Thu, 04 Nov 2021 13:07:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -698,7 +797,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56b225d3-4835-4e6b-81ac-dd982582c23e + - c385b555-afa4-4cb4-9893-c6dc475706a3 status: 200 OK code: 200 duration: "" @@ -707,21 +806,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6 method: GET response: - body: '{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[{"id":"0724ef8c-b934-4216-bf01-ea76834e02c7","status":"ready","ip_address":"10.73.110.45","created_at":"2021-05-17T12:37:00.637202Z","updated_at":"2021-05-17T12:47:49.398963Z","region":"fr-par","zone":"fr-par-1"},{"id":"ba8fd06f-5eed-4142-8594-e05bd8ee4cc9","status":"ready","ip_address":"10.70.8.139","created_at":"2021-05-17T12:44:07.327394Z","updated_at":"2021-05-17T12:47:49.530155Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[{"id":"31bc3338-9445-402c-8335-86563f9b1212","status":"ready","ip_address":"10.65.140.105","created_at":"2021-11-04T13:05:27.492304Z","updated_at":"2021-11-04T13:07:16.945867Z","region":"fr-par","zone":"fr-par-1"},{"id":"2f1eb552-7b15-4c98-8b94-fbb439a63bb4","status":"ready","ip_address":"10.68.28.69","created_at":"2021-11-04T10:44:27.242340Z","updated_at":"2021-11-04T13:07:17.173021Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1232" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:53 GMT + - Thu, 04 Nov 2021 13:07:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -731,7 +830,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96fef8de-0899-4116-9653-7231813b1fd0 + - 187b7ec8-5d4b-4aea-b6fb-c28ad19eb9d8 status: 200 OK code: 200 duration: "" @@ -740,21 +839,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/631b15e0-0286-4060-b6a9-35e2cfd86c60 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"631b15e0-0286-4060-b6a9-35e2cfd86c60","type":"letsencryt","status":"pending","common_name":"51-159-113-213.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889Z","region":"fr-par","zone":"fr-par-1"},"name":"test-cert-new","created_at":"2021-05-17T12:47:49.071219Z","updated_at":"2021-05-17T12:47:51.486624Z"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1188" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:53 GMT + - Thu, 04 Nov 2021 13:07:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -764,7 +863,40 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eba45ef7-41e0-459f-a569-53721f04d05f + - 5096ba8c-ca28-4bea-a5c0-492050075b6f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/78eb04c9-1a1a-4342-b7ea-c20d1fbffa51 + method: GET + response: + body: '{"id":"78eb04c9-1a1a-4342-b7ea-c20d1fbffa51","type":"letsencryt","status":"pending","common_name":"195-154-70-164.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"name":"test-cert-new","created_at":"2021-11-04T13:07:16.683417Z","updated_at":"2021-11-04T13:07:18.801066Z"}' + headers: + Content-Length: + - "1230" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:07:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 970ecbc4-2d61-4ddf-bfaf-d22d66e779fc status: 200 OK code: 200 duration: "" @@ -775,21 +907,21 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/631b15e0-0286-4060-b6a9-35e2cfd86c60 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/78eb04c9-1a1a-4342-b7ea-c20d1fbffa51 method: PUT response: - body: '{"id":"631b15e0-0286-4060-b6a9-35e2cfd86c60","type":"letsencryt","status":"pending","common_name":"51-159-113-213.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889Z","region":"fr-par","zone":"fr-par-1"},"name":"test-cert","created_at":"2021-05-17T12:47:49.071219Z","updated_at":"2021-05-17T12:47:54.623591505Z"}' + body: '{"id":"78eb04c9-1a1a-4342-b7ea-c20d1fbffa51","type":"letsencryt","status":"pending","common_name":"195-154-70-164.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"name":"test-cert","created_at":"2021-11-04T13:07:16.683417Z","updated_at":"2021-11-04T13:07:20.810792358Z"}' headers: Content-Length: - - "1187" + - "1229" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:54 GMT + - Thu, 04 Nov 2021 13:07:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -799,7 +931,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a90e1322-ac79-444a-b47f-4eefd14fc434 + - cca8f2f3-469b-4a20-bde0-765d1a69c52c status: 200 OK code: 200 duration: "" @@ -808,21 +940,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/631b15e0-0286-4060-b6a9-35e2cfd86c60 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/78eb04c9-1a1a-4342-b7ea-c20d1fbffa51 method: GET response: - body: '{"id":"631b15e0-0286-4060-b6a9-35e2cfd86c60","type":"letsencryt","status":"pending","common_name":"51-159-113-213.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889Z","region":"fr-par","zone":"fr-par-1"},"name":"test-cert","created_at":"2021-05-17T12:47:49.071219Z","updated_at":"2021-05-17T12:47:54.623592Z"}' + body: '{"id":"78eb04c9-1a1a-4342-b7ea-c20d1fbffa51","type":"letsencryt","status":"pending","common_name":"195-154-70-164.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"name":"test-cert","created_at":"2021-11-04T13:07:16.683417Z","updated_at":"2021-11-04T13:07:20.810792Z"}' headers: Content-Length: - - "1184" + - "1226" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:54 GMT + - Thu, 04 Nov 2021 13:07:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -832,7 +964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b70193d5-38a1-46a0-878b-8899296dc7d8 + - bbe15346-b3f8-47b5-8541-fbbc2564a3c8 status: 200 OK code: 200 duration: "" @@ -841,12 +973,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbec8086-4ec8-460b-8c92-29ad6405d2f5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "314" @@ -855,7 +987,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:55 GMT + - Thu, 04 Nov 2021 13:07:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -865,7 +997,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0ec88a6-aa6b-4c17-ba1d-bf29852e0c3d + - ee461a6e-265c-492a-962b-887629e2fbc7 status: 200 OK code: 200 duration: "" @@ -874,21 +1006,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6 method: GET response: - body: '{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[{"id":"0724ef8c-b934-4216-bf01-ea76834e02c7","status":"ready","ip_address":"10.73.110.45","created_at":"2021-05-17T12:37:00.637202Z","updated_at":"2021-05-17T12:47:49.398963Z","region":"fr-par","zone":"fr-par-1"},{"id":"ba8fd06f-5eed-4142-8594-e05bd8ee4cc9","status":"ready","ip_address":"10.70.8.139","created_at":"2021-05-17T12:44:07.327394Z","updated_at":"2021-05-17T12:47:49.530155Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[{"id":"31bc3338-9445-402c-8335-86563f9b1212","status":"ready","ip_address":"10.65.140.105","created_at":"2021-11-04T13:05:27.492304Z","updated_at":"2021-11-04T13:07:16.945867Z","region":"fr-par","zone":"fr-par-1"},{"id":"2f1eb552-7b15-4c98-8b94-fbb439a63bb4","status":"ready","ip_address":"10.68.28.69","created_at":"2021-11-04T10:44:27.242340Z","updated_at":"2021-11-04T13:07:17.173021Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1232" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:55 GMT + - Thu, 04 Nov 2021 13:07:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -898,7 +1030,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abcd6b4f-110a-4d23-b914-e0435978caeb + - 00190b9e-c799-48c9-9dd3-791919db066e status: 200 OK code: 200 duration: "" @@ -907,21 +1039,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/631b15e0-0286-4060-b6a9-35e2cfd86c60 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"631b15e0-0286-4060-b6a9-35e2cfd86c60","type":"letsencryt","status":"pending","common_name":"51-159-113-213.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889Z","region":"fr-par","zone":"fr-par-1"},"name":"test-cert","created_at":"2021-05-17T12:47:49.071219Z","updated_at":"2021-05-17T12:47:54.623592Z"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1184" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:55 GMT + - Thu, 04 Nov 2021 13:07:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -931,7 +1063,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e693039a-372a-4ce6-b78b-77c644936e45 + - ce4bd504-a6f9-4bb2-9226-8a29042ac108 status: 200 OK code: 200 duration: "" @@ -940,12 +1072,45 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbec8086-4ec8-460b-8c92-29ad6405d2f5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/78eb04c9-1a1a-4342-b7ea-c20d1fbffa51 method: GET response: - body: '{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"78eb04c9-1a1a-4342-b7ea-c20d1fbffa51","type":"letsencryt","status":"pending","common_name":"195-154-70-164.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"name":"test-cert","created_at":"2021-11-04T13:07:16.683417Z","updated_at":"2021-11-04T13:07:20.810792Z"}' + headers: + Content-Length: + - "1226" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:07:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e2e84029-93e7-4eeb-b3bb-de454f7c2a9b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 + method: GET + response: + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "314" @@ -954,7 +1119,40 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:56 GMT + - Thu, 04 Nov 2021 13:07:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 47a43c8f-60ce-4696-81e7-d81d41a92965 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6 + method: GET + response: + body: '{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[{"id":"31bc3338-9445-402c-8335-86563f9b1212","status":"ready","ip_address":"10.65.140.105","created_at":"2021-11-04T13:05:27.492304Z","updated_at":"2021-11-04T13:07:16.945867Z","region":"fr-par","zone":"fr-par-1"},{"id":"2f1eb552-7b15-4c98-8b94-fbb439a63bb4","status":"ready","ip_address":"10.68.28.69","created_at":"2021-11-04T10:44:27.242340Z","updated_at":"2021-11-04T13:07:17.173021Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1275" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:07:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -964,7 +1162,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99cc1f2b-f21d-4f97-a80a-3cc09b6b9b0e + - 86966018-c599-4da6-87dd-c403a3b17eeb status: 200 OK code: 200 duration: "" @@ -973,21 +1171,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[{"id":"0724ef8c-b934-4216-bf01-ea76834e02c7","status":"ready","ip_address":"10.73.110.45","created_at":"2021-05-17T12:37:00.637202Z","updated_at":"2021-05-17T12:47:49.398963Z","region":"fr-par","zone":"fr-par-1"},{"id":"ba8fd06f-5eed-4142-8594-e05bd8ee4cc9","status":"ready","ip_address":"10.70.8.139","created_at":"2021-05-17T12:44:07.327394Z","updated_at":"2021-05-17T12:47:49.530155Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1232" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:56 GMT + - Thu, 04 Nov 2021 13:07:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -997,7 +1195,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67a659e9-8356-4744-890b-21ea5d30a77a + - 9775f6cd-f003-4fea-a165-00841cd39980 status: 200 OK code: 200 duration: "" @@ -1006,21 +1204,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/631b15e0-0286-4060-b6a9-35e2cfd86c60 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/78eb04c9-1a1a-4342-b7ea-c20d1fbffa51 method: GET response: - body: '{"id":"631b15e0-0286-4060-b6a9-35e2cfd86c60","type":"letsencryt","status":"pending","common_name":"51-159-113-213.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:49.085889Z","region":"fr-par","zone":"fr-par-1"},"name":"test-cert","created_at":"2021-05-17T12:47:49.071219Z","updated_at":"2021-05-17T12:47:54.623592Z"}' + body: '{"id":"78eb04c9-1a1a-4342-b7ea-c20d1fbffa51","type":"letsencryt","status":"pending","common_name":"195-154-70-164.lb.fr-par.scw.cloud","subject_alternative_name":[],"fingerprint":"","not_valid_before":"0001-01-01T00:00:00Z","not_valid_after":"0001-01-01T00:00:00Z","lb":{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:16.696761Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"name":"test-cert","created_at":"2021-11-04T13:07:16.683417Z","updated_at":"2021-11-04T13:07:20.810792Z"}' headers: Content-Length: - - "1184" + - "1226" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:56 GMT + - Thu, 04 Nov 2021 13:07:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1030,7 +1228,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c92249b-96af-486a-925c-7b9504d396c1 + - c6df47ea-7263-49b6-9421-bc09828c29b7 status: 200 OK code: 200 duration: "" @@ -1039,9 +1237,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/631b15e0-0286-4060-b6a9-35e2cfd86c60 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/78eb04c9-1a1a-4342-b7ea-c20d1fbffa51 method: DELETE response: body: "" @@ -1051,7 +1249,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:58 GMT + - Thu, 04 Nov 2021 13:07:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1061,7 +1259,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d861cc6d-238c-4331-b791-939b03e51c94 + - 231c8731-21ff-4e54-b41c-642583cd1cd0 status: 204 No Content code: 204 duration: "" @@ -1074,21 +1272,21 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540/certificates + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6/certificates method: POST response: - body: '{"id":"17f4e8a8-7b23-4b0a-8114-626252b149f0","type":"custom","status":"ready","common_name":"*.example.com","subject_alternative_name":[],"fingerprint":"","not_valid_before":"2020-04-28T17:46:31Z","not_valid_after":"2022-04-28T17:46:31Z","lb":{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[{"id":"0724ef8c-b934-4216-bf01-ea76834e02c7","status":"pending","ip_address":"10.73.110.45","created_at":"2021-05-17T12:37:00.637202Z","updated_at":"2021-05-17T12:47:57.854217Z","region":"fr-par","zone":"fr-par-1"},{"id":"ba8fd06f-5eed-4142-8594-e05bd8ee4cc9","status":"pending","ip_address":"10.70.8.139","created_at":"2021-05-17T12:44:07.327394Z","updated_at":"2021-05-17T12:47:57.967266Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:57.824270Z","region":"fr-par","zone":"fr-par-1"},"name":"test-custom-cert","created_at":"2021-05-17T12:47:58.149774082Z","updated_at":"2021-05-17T12:47:58.149774082Z"}' + body: '{"id":"c4ba55f3-5fd1-42c9-8e00-3709f760fbc3","type":"custom","status":"ready","common_name":"*.example.com","subject_alternative_name":[],"fingerprint":"","not_valid_before":"2020-04-28T17:46:31Z","not_valid_after":"2022-04-28T17:46:31Z","lb":{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[{"id":"31bc3338-9445-402c-8335-86563f9b1212","status":"pending","ip_address":"10.65.140.105","created_at":"2021-11-04T13:05:27.492304Z","updated_at":"2021-11-04T13:07:23.024878Z","region":"fr-par","zone":"fr-par-1"},{"id":"2f1eb552-7b15-4c98-8b94-fbb439a63bb4","status":"pending","ip_address":"10.68.28.69","created_at":"2021-11-04T10:44:27.242340Z","updated_at":"2021-11-04T13:07:23.106650Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:23.000945Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"name":"test-custom-cert","created_at":"2021-11-04T13:07:23.254318427Z","updated_at":"2021-11-04T13:07:23.254318427Z"}' headers: Content-Length: - - "1598" + - "1641" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:58 GMT + - Thu, 04 Nov 2021 13:07:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1098,7 +1296,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f6cba26-cc14-4a27-90b1-2ad53e0ba012 + - d5dd1b06-d783-4ff6-afc2-8bcb33b253ff status: 200 OK code: 200 duration: "" @@ -1107,21 +1305,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/17f4e8a8-7b23-4b0a-8114-626252b149f0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/c4ba55f3-5fd1-42c9-8e00-3709f760fbc3 method: GET response: - body: '{"id":"17f4e8a8-7b23-4b0a-8114-626252b149f0","type":"custom","status":"ready","common_name":"*.example.com","subject_alternative_name":[],"fingerprint":"","not_valid_before":"2020-04-28T17:46:31Z","not_valid_after":"2022-04-28T17:46:31Z","lb":{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:57.824270Z","region":"fr-par","zone":"fr-par-1"},"name":"test-custom-cert","created_at":"2021-05-17T12:47:58.149774Z","updated_at":"2021-05-17T12:47:58.149774Z"}' + body: '{"id":"c4ba55f3-5fd1-42c9-8e00-3709f760fbc3","type":"custom","status":"ready","common_name":"*.example.com","subject_alternative_name":[],"fingerprint":"","not_valid_before":"2020-04-28T17:46:31Z","not_valid_after":"2022-04-28T17:46:31Z","lb":{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:23.000945Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"name":"test-custom-cert","created_at":"2021-11-04T13:07:23.254318Z","updated_at":"2021-11-04T13:07:23.254318Z"}' headers: Content-Length: - - "1164" + - "1206" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:58 GMT + - Thu, 04 Nov 2021 13:07:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1131,7 +1329,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc044033-217a-4f38-9bcc-8204e2868c6b + - d95e9b75-323e-45ab-bb22-31c6d598a168 status: 200 OK code: 200 duration: "" @@ -1140,12 +1338,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbec8086-4ec8-460b-8c92-29ad6405d2f5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "314" @@ -1154,7 +1352,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:59 GMT + - Thu, 04 Nov 2021 13:07:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1164,7 +1362,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7d0259b-550b-43d7-a6d4-13c01325009c + - 132ff637-b02b-45ea-9eb8-ffa4b005c619 status: 200 OK code: 200 duration: "" @@ -1173,21 +1371,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6 method: GET response: - body: '{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[{"id":"0724ef8c-b934-4216-bf01-ea76834e02c7","status":"pending","ip_address":"10.73.110.45","created_at":"2021-05-17T12:37:00.637202Z","updated_at":"2021-05-17T12:47:57.854217Z","region":"fr-par","zone":"fr-par-1"},{"id":"ba8fd06f-5eed-4142-8594-e05bd8ee4cc9","status":"pending","ip_address":"10.70.8.139","created_at":"2021-05-17T12:44:07.327394Z","updated_at":"2021-05-17T12:47:57.967266Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:57.824270Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[{"id":"31bc3338-9445-402c-8335-86563f9b1212","status":"ready","ip_address":"10.65.140.105","created_at":"2021-11-04T13:05:27.492304Z","updated_at":"2021-11-04T13:07:23.243338Z","region":"fr-par","zone":"fr-par-1"},{"id":"2f1eb552-7b15-4c98-8b94-fbb439a63bb4","status":"ready","ip_address":"10.68.28.69","created_at":"2021-11-04T10:44:27.242340Z","updated_at":"2021-11-04T13:07:23.348493Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:23.000945Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1236" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:59 GMT + - Thu, 04 Nov 2021 13:07:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1197,7 +1395,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c48e7ee7-ceb0-4030-9337-b983566359f9 + - c4508e55-134d-47ea-b76a-84f2c7c69318 status: 200 OK code: 200 duration: "" @@ -1206,21 +1404,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/17f4e8a8-7b23-4b0a-8114-626252b149f0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"17f4e8a8-7b23-4b0a-8114-626252b149f0","type":"custom","status":"ready","common_name":"*.example.com","subject_alternative_name":[],"fingerprint":"","not_valid_before":"2020-04-28T17:46:31Z","not_valid_after":"2022-04-28T17:46:31Z","lb":{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:47:57.824270Z","region":"fr-par","zone":"fr-par-1"},"name":"test-custom-cert","created_at":"2021-05-17T12:47:58.149774Z","updated_at":"2021-05-17T12:47:58.149774Z"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1164" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:59 GMT + - Thu, 04 Nov 2021 13:07:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1230,7 +1428,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2569a88f-34da-4d5c-a08c-e559504f5dc5 + - 27cdc2db-0f19-4cda-9328-3bcab118d909 status: 200 OK code: 200 duration: "" @@ -1239,19 +1437,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/17f4e8a8-7b23-4b0a-8114-626252b149f0 - method: DELETE + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/c4ba55f3-5fd1-42c9-8e00-3709f760fbc3 + method: GET response: - body: "" + body: '{"id":"c4ba55f3-5fd1-42c9-8e00-3709f760fbc3","type":"custom","status":"ready","common_name":"*.example.com","subject_alternative_name":[],"fingerprint":"","not_valid_before":"2020-04-28T17:46:31Z","not_valid_after":"2022-04-28T17:46:31Z","lb":{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:23.000945Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"name":"test-custom-cert","created_at":"2021-11-04T13:07:23.254318Z","updated_at":"2021-11-04T13:07:23.254318Z"}' headers: + Content-Length: + - "1206" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:48:01 GMT + - Thu, 04 Nov 2021 13:07:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1261,18 +1461,18 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1075d007-9976-42d0-b80c-a4ba251a3903 - status: 204 No Content - code: 204 + - 5ccb9a7c-fed0-4f12-86d7-d1f44ccd4ba4 + status: 200 OK + code: 200 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/c4ba55f3-5fd1-42c9-8e00-3709f760fbc3 method: DELETE response: body: "" @@ -1282,7 +1482,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:48:01 GMT + - Thu, 04 Nov 2021 13:07:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1292,7 +1492,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b38752da-3163-481d-ae6a-fb9664467b46 + - e0b42f8e-51e6-4f82-a798-ea2f0d38c0a5 status: 204 No Content code: 204 duration: "" @@ -1301,21 +1501,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6 method: GET response: - body: '{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"pending","instances":[{"id":"0724ef8c-b934-4216-bf01-ea76834e02c7","status":"pending","ip_address":"10.73.110.45","created_at":"2021-05-17T12:37:00.637202Z","updated_at":"2021-05-17T12:48:01.336188Z","region":"fr-par","zone":"fr-par-1"},{"id":"ba8fd06f-5eed-4142-8594-e05bd8ee4cc9","status":"pending","ip_address":"10.70.8.139","created_at":"2021-05-17T12:44:07.327394Z","updated_at":"2021-05-17T12:48:01.443589Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:48:01.713057Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"ready","instances":[{"id":"31bc3338-9445-402c-8335-86563f9b1212","status":"pending","ip_address":"10.65.140.105","created_at":"2021-11-04T13:05:27.492304Z","updated_at":"2021-11-04T13:07:25.199163Z","region":"fr-par","zone":"fr-par-1"},{"id":"2f1eb552-7b15-4c98-8b94-fbb439a63bb4","status":"pending","ip_address":"10.68.28.69","created_at":"2021-11-04T10:44:27.242340Z","updated_at":"2021-11-04T13:07:25.299389Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:25.180851Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1238" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:48:01 GMT + - Thu, 04 Nov 2021 13:07:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1325,7 +1525,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 797e4ea4-3ae1-49b6-83ae-127edeb6fb9c + - 11268f14-9617-4b16-b63c-47cef5ccdf00 status: 200 OK code: 200 duration: "" @@ -1334,21 +1534,52 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6?release_ip=false + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:07:25 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1e9b821d-50f5-4a31-a137-4fe2db85c52f + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6 method: GET response: - body: '{"id":"2a319704-79ab-4ba9-8058-37cb06d2c540","name":"test-lb","description":"","status":"pending","instances":[{"id":"0724ef8c-b934-4216-bf01-ea76834e02c7","status":"ready","ip_address":"10.73.110.45","created_at":"2021-05-17T12:37:00.637202Z","updated_at":"2021-05-17T12:48:02.485264Z","region":"fr-par","zone":"fr-par-1"},{"id":"ba8fd06f-5eed-4142-8594-e05bd8ee4cc9","status":"ready","ip_address":"10.70.8.139","created_at":"2021-05-17T12:44:07.327394Z","updated_at":"2021-05-17T12:48:02.843710Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cbec8086-4ec8-460b-8c92-29ad6405d2f5","ip_address":"51.159.113.213","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"2a319704-79ab-4ba9-8058-37cb06d2c540","reverse":"51-159-113-213.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.026140Z","updated_at":"2021-05-17T12:48:01.713057Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","name":"test-lb","description":"","status":"pending","instances":[{"id":"31bc3338-9445-402c-8335-86563f9b1212","status":"ready","ip_address":"10.65.140.105","created_at":"2021-11-04T13:05:27.492304Z","updated_at":"2021-11-04T13:07:25.429914Z","region":"fr-par","zone":"fr-par-1"},{"id":"2f1eb552-7b15-4c98-8b94-fbb439a63bb4","status":"ready","ip_address":"10.68.28.69","created_at":"2021-11-04T10:44:27.242340Z","updated_at":"2021-11-04T13:07:25.486481Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"596d89fd-3252-4c29-bd70-88eabaa5a0f6","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:06:46.079553Z","updated_at":"2021-11-04T13:07:25.558175Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1234" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:48:04 GMT + - Thu, 04 Nov 2021 13:07:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1358,7 +1589,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 623c52fa-6373-4969-b369-e903d37c136a + - b54ac5fc-ec2d-46cd-b635-704a91a08470 status: 200 OK code: 200 duration: "" @@ -1367,9 +1598,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6 method: GET response: body: '{"message":"lbs not Found"}' @@ -1381,7 +1612,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:48:06 GMT + - Thu, 04 Nov 2021 13:07:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1391,7 +1622,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4439dbd2-5a22-457b-aa28-7b2acb9cb0a6 + - 87c0bb38-0a53-4055-9998-b707de1b8b32 status: 404 Not Found code: 404 duration: "" @@ -1400,9 +1631,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbec8086-4ec8-460b-8c92-29ad6405d2f5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: DELETE response: body: "" @@ -1412,7 +1643,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:48:06 GMT + - Thu, 04 Nov 2021 13:07:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1422,7 +1653,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57163857-29c4-463c-a045-45a0639f9ac8 + - b652cf1d-59ed-4b7c-80a1-cfd5c2cd4d17 status: 204 No Content code: 204 duration: "" @@ -1431,9 +1662,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2a319704-79ab-4ba9-8058-37cb06d2c540 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/596d89fd-3252-4c29-bd70-88eabaa5a0f6 method: GET response: body: '{"message":"lbs not Found"}' @@ -1445,7 +1676,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:48:06 GMT + - Thu, 04 Nov 2021 13:07:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1455,7 +1686,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c282133f-88b5-406f-bc42-e4990c0f5e52 + - 075c7fd1-fa3c-4e60-ade1-7b452ca627fb status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/lb-frontend-basic.cassette.yaml b/scaleway/testdata/lb-frontend-basic.cassette.yaml index 802daf7f7b..89aa6f34ff 100644 --- a/scaleway/testdata/lb-frontend-basic.cassette.yaml +++ b/scaleway/testdata/lb-frontend-basic.cassette.yaml @@ -2,18 +2,18 @@ version: 1 interactions: - request: - body: '{"project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","reverse":null}' + body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","reverse":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "280" @@ -22,7 +22,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:43 GMT + - Thu, 04 Nov 2021 13:08:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c49ec8af-ae48-4e5b-af6d-e8b5c7fa89cf + - f8d6ed61-78d9-4be7-8024-5b9e814b3e2f status: 200 OK code: 200 duration: "" @@ -41,12 +41,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb91f686-b8c3-4957-aeb5-1f390f3894af + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "280" @@ -55,7 +55,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:43 GMT + - Thu, 04 Nov 2021 13:08:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,32 +65,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0abca1b7-110a-4f73-8f5d-3f34364519c5 + - 0ad74b3a-4d0a-4d03-b6e0-2cea63fb5840 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","name":"test-lb","description":"","ip_id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' + body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","name":"test-lb","description":"","ip_id":"a7972715-724c-448c-85b2-640ffc655a09","tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333003Z","updated_at":"2021-05-17T12:47:44.005333003Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176504686Z","updated_at":"2021-11-04T13:08:22.176504686Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "816" + - "858" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:44 GMT + - Thu, 04 Nov 2021 13:08:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2fcd9d2-9272-40fd-9058-dea08748a719 + - 78bfd931-f063-4224-ac48-ba4fb884aad8 status: 200 OK code: 200 duration: "" @@ -109,21 +109,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/29be0f4a-a2e9-4538-93e4-2307c339e12b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb method: GET response: - body: '{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:44.005333Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:22.176505Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "810" + - "852" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:44 GMT + - Thu, 04 Nov 2021 13:08:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97e222d8-bb95-44d3-a6b8-a04a8e8eadd9 + - 6f697a71-508b-4237-afa0-c59600172231 status: 200 OK code: 200 duration: "" @@ -142,21 +142,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/29be0f4a-a2e9-4538-93e4-2307c339e12b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb method: GET response: - body: '{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[{"id":"1a45d4c3-e388-4bad-be17-9d89290988e2","status":"ready","ip_address":"10.70.30.115","created_at":"2021-05-17T12:35:23.436164Z","updated_at":"2021-05-17T12:47:44.739151Z","region":"fr-par","zone":"fr-par-1"},{"id":"182d3a67-6a72-481d-ba7d-fa408ad383e0","status":"ready","ip_address":"10.70.46.79","created_at":"2021-05-17T12:37:37.552648Z","updated_at":"2021-05-17T12:47:45.278667Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[{"id":"8d6c2814-daf0-4e31-8b86-6865d1ba266d","status":"ready","ip_address":"10.68.194.143","created_at":"2021-11-04T13:06:47.299420Z","updated_at":"2021-11-04T13:08:22.766228Z","region":"fr-par","zone":"fr-par-1"},{"id":"03a14f93-b019-4824-b91d-014c51a700f8","status":"ready","ip_address":"10.65.140.137","created_at":"2021-11-04T08:30:20.613805Z","updated_at":"2021-11-04T13:08:22.958494Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1232" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:46 GMT + - Thu, 04 Nov 2021 13:08:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 383de460-d307-4077-8649-609a0b5b06d2 + - c9da146a-88be-4c62-aac3-ab70b549c113 status: 200 OK code: 200 duration: "" @@ -175,21 +175,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/29be0f4a-a2e9-4538-93e4-2307c339e12b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb method: GET response: - body: '{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[{"id":"1a45d4c3-e388-4bad-be17-9d89290988e2","status":"ready","ip_address":"10.70.30.115","created_at":"2021-05-17T12:35:23.436164Z","updated_at":"2021-05-17T12:47:44.739151Z","region":"fr-par","zone":"fr-par-1"},{"id":"182d3a67-6a72-481d-ba7d-fa408ad383e0","status":"ready","ip_address":"10.70.46.79","created_at":"2021-05-17T12:37:37.552648Z","updated_at":"2021-05-17T12:47:45.278667Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[{"id":"8d6c2814-daf0-4e31-8b86-6865d1ba266d","status":"ready","ip_address":"10.68.194.143","created_at":"2021-11-04T13:06:47.299420Z","updated_at":"2021-11-04T13:08:22.766228Z","region":"fr-par","zone":"fr-par-1"},{"id":"03a14f93-b019-4824-b91d-014c51a700f8","status":"ready","ip_address":"10.65.140.137","created_at":"2021-11-04T08:30:20.613805Z","updated_at":"2021-11-04T13:08:22.958494Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1232" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:46 GMT + - Thu, 04 Nov 2021 13:08:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,32 +199,98 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00aa8f5f-4f24-4b19-8a68-bf82ee71035f + - ad13e4f1-93dc-4798-bfae-c5ada07309a6 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-bkd-lucid-galois","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"check_max_retries":2,"port":80,"check_send_proxy":false,"check_timeout":30000,"check_delay":60000},"server_ip":[],"send_proxy_v2":false,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","timeout_server":null,"timeout_connect":null,"timeout_tunnel":null}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:08:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 61cf1b25-9f0d-497d-bc40-f6021cf46006 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb + method: GET + response: + body: '{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[{"id":"8d6c2814-daf0-4e31-8b86-6865d1ba266d","status":"ready","ip_address":"10.68.194.143","created_at":"2021-11-04T13:06:47.299420Z","updated_at":"2021-11-04T13:08:22.766228Z","region":"fr-par","zone":"fr-par-1"},{"id":"03a14f93-b019-4824-b91d-014c51a700f8","status":"ready","ip_address":"10.65.140.137","created_at":"2021-11-04T08:30:20.613805Z","updated_at":"2021-11-04T13:08:22.958494Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1277" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:08:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4311eec2-c1c9-4574-b820-e76f304f6968 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"tf-lb-bkd-kind-napier","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"check_max_retries":2,"port":80,"check_send_proxy":false,"check_timeout":30000,"check_delay":60000},"server_ip":[],"send_proxy_v2":false,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","timeout_server":null,"timeout_connect":null,"timeout_tunnel":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/29be0f4a-a2e9-4538-93e4-2307c339e12b/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb/backends method: POST response: - body: '{"id":"15965e0e-5056-45b8-bb22-e68e70985a6e","name":"tf-lb-bkd-lucid-galois","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[{"id":"1a45d4c3-e388-4bad-be17-9d89290988e2","status":"ready","ip_address":"10.70.30.115","created_at":"2021-05-17T12:35:23.436164Z","updated_at":"2021-05-17T12:47:44.739151Z","region":"fr-par","zone":"fr-par-1"},{"id":"182d3a67-6a72-481d-ba7d-fa408ad383e0","status":"ready","ip_address":"10.70.46.79","created_at":"2021-05-17T12:37:37.552648Z","updated_at":"2021-05-17T12:47:45.278667Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.514540556Z","updated_at":"2021-05-17T12:47:46.514540556Z"}' + body: '{"id":"3371e412-fe4e-48c2-94b8-692fa2199c18","name":"tf-lb-bkd-kind-napier","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[{"id":"8d6c2814-daf0-4e31-8b86-6865d1ba266d","status":"pending","ip_address":"10.68.194.143","created_at":"2021-11-04T13:06:47.299420Z","updated_at":"2021-11-04T13:08:52.871550714Z","region":"fr-par","zone":"fr-par-1"},{"id":"03a14f93-b019-4824-b91d-014c51a700f8","status":"pending","ip_address":"10.65.140.137","created_at":"2021-11-04T08:30:20.613805Z","updated_at":"2021-11-04T13:08:52.968183235Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:08:52.829259766Z","updated_at":"2021-11-04T13:08:52.829259766Z"}' headers: Content-Length: - - "1869" + - "1923" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:46 GMT + - Thu, 04 Nov 2021 13:08:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -234,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0a5d105-4aa2-4903-af90-4e5a33bc52c9 + - 5b991785-2cdb-4783-a4e1-ea8c870f0066 status: 200 OK code: 200 duration: "" @@ -243,21 +309,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/15965e0e-5056-45b8-bb22-e68e70985a6e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3371e412-fe4e-48c2-94b8-692fa2199c18 method: GET response: - body: '{"id":"15965e0e-5056-45b8-bb22-e68e70985a6e","name":"tf-lb-bkd-lucid-galois","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.514541Z","updated_at":"2021-05-17T12:47:46.514541Z"}' + body: '{"id":"3371e412-fe4e-48c2-94b8-692fa2199c18","name":"tf-lb-bkd-kind-napier","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[{"id":"03a14f93-b019-4824-b91d-014c51a700f8","status":"ready","ip_address":"10.65.140.137","created_at":"2021-11-04T08:30:20.613805Z","updated_at":"2021-11-04T13:08:53.272814Z","region":"fr-par","zone":"fr-par-1"},{"id":"8d6c2814-daf0-4e31-8b86-6865d1ba266d","status":"ready","ip_address":"10.68.194.143","created_at":"2021-11-04T13:06:47.299420Z","updated_at":"2021-11-04T13:08:53.227354Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:08:52.829260Z","updated_at":"2021-11-04T13:08:52.829260Z"}' headers: Content-Length: - - "1439" + - "1907" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:46 GMT + - Thu, 04 Nov 2021 13:08:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -267,32 +333,65 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3457c3d7-c8a9-4c87-86e9-ade1186b575e + - 74a9a1f8-2d94-46cb-923a-f667b379aebb status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-mystifying-pike","inbound_port":80,"backend_id":"15965e0e-5056-45b8-bb22-e68e70985a6e","certificate_id":null,"certificate_ids":null,"timeout_client":null}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb + method: GET + response: + body: '{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[{"id":"8d6c2814-daf0-4e31-8b86-6865d1ba266d","status":"ready","ip_address":"10.68.194.143","created_at":"2021-11-04T13:06:47.299420Z","updated_at":"2021-11-04T13:08:53.227354Z","region":"fr-par","zone":"fr-par-1"},{"id":"03a14f93-b019-4824-b91d-014c51a700f8","status":"ready","ip_address":"10.65.140.137","created_at":"2021-11-04T08:30:20.613805Z","updated_at":"2021-11-04T13:08:53.272814Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1277" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:08:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9b9a4010-7b11-4b45-b5e4-83ee8e990f82 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"tf-lb-frt-strange-shtern","inbound_port":80,"backend_id":"3371e412-fe4e-48c2-94b8-692fa2199c18","certificate_id":null,"certificate_ids":null,"timeout_client":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/29be0f4a-a2e9-4538-93e4-2307c339e12b/frontends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb/frontends method: POST response: - body: '{"id":"a4f4a567-1f05-4f1e-a57f-025fe27a83c3","name":"tf-lb-frt-mystifying-pike","inbound_port":80,"backend":{"id":"15965e0e-5056-45b8-bb22-e68e70985a6e","name":"tf-lb-bkd-lucid-galois","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.514541Z","updated_at":"2021-05-17T12:47:46.514541Z"},"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"timeout_client":null,"certificate":null,"certificate_ids":[],"created_at":"2021-05-17T12:47:47.021146Z","updated_at":"2021-05-17T12:47:47.021146Z"}' + body: '{"id":"b279a542-48b9-4718-960e-ac5427be5530","name":"tf-lb-frt-strange-shtern","inbound_port":80,"backend":{"id":"3371e412-fe4e-48c2-94b8-692fa2199c18","name":"tf-lb-bkd-kind-napier","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:08:52.829260Z","updated_at":"2021-11-04T13:08:52.829260Z"},"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[{"id":"8d6c2814-daf0-4e31-8b86-6865d1ba266d","status":"pending","ip_address":"10.68.194.143","created_at":"2021-11-04T13:06:47.299420Z","updated_at":"2021-11-04T13:08:53.743258581Z","region":"fr-par","zone":"fr-par-1"},{"id":"03a14f93-b019-4824-b91d-014c51a700f8","status":"pending","ip_address":"10.65.140.137","created_at":"2021-11-04T08:30:20.613805Z","updated_at":"2021-11-04T13:08:53.818495124Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":null,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:08:53.689186Z","updated_at":"2021-11-04T13:08:53.689186Z"}' headers: Content-Length: - - "2510" + - "3029" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:47 GMT + - Thu, 04 Nov 2021 13:08:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -302,7 +401,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5364d03-3fd5-463a-8f9c-b9dfbbf069e6 + - 12dc6e5e-d1e1-470d-80f2-feaef5633bac status: 200 OK code: 200 duration: "" @@ -311,9 +410,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/a4f4a567-1f05-4f1e-a57f-025fe27a83c3/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b279a542-48b9-4718-960e-ac5427be5530/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' @@ -325,7 +424,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:47 GMT + - Thu, 04 Nov 2021 13:08:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -335,7 +434,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c599a9b8-aa90-4c7d-aa07-4c1b343c1b1a + - 21b4eb1f-994c-45d2-8655-e346f5c3d249 status: 200 OK code: 200 duration: "" @@ -344,21 +443,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/a4f4a567-1f05-4f1e-a57f-025fe27a83c3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b279a542-48b9-4718-960e-ac5427be5530 method: GET response: - body: '{"id":"a4f4a567-1f05-4f1e-a57f-025fe27a83c3","name":"tf-lb-frt-mystifying-pike","inbound_port":80,"backend":{"id":"15965e0e-5056-45b8-bb22-e68e70985a6e","name":"tf-lb-bkd-lucid-galois","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.514541Z","updated_at":"2021-05-17T12:47:46.514541Z"},"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"timeout_client":null,"certificate":null,"certificate_ids":[],"created_at":"2021-05-17T12:47:47.021146Z","updated_at":"2021-05-17T12:47:47.021146Z"}' + body: '{"id":"b279a542-48b9-4718-960e-ac5427be5530","name":"tf-lb-frt-strange-shtern","inbound_port":80,"backend":{"id":"3371e412-fe4e-48c2-94b8-692fa2199c18","name":"tf-lb-bkd-kind-napier","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:08:52.829260Z","updated_at":"2021-11-04T13:08:52.829260Z"},"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":null,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:08:53.689186Z","updated_at":"2021-11-04T13:08:53.689186Z"}' headers: Content-Length: - - "2510" + - "2592" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:47 GMT + - Thu, 04 Nov 2021 13:08:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -368,7 +467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8657fab0-064b-4ff1-9355-6542a14f6a86 + - 90bc7aef-b566-410b-80d0-58b3b6dcaf82 status: 200 OK code: 200 duration: "" @@ -377,9 +476,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/a4f4a567-1f05-4f1e-a57f-025fe27a83c3/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b279a542-48b9-4718-960e-ac5427be5530/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' @@ -391,7 +490,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:47 GMT + - Thu, 04 Nov 2021 13:08:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -401,7 +500,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5305972c-890f-446c-a159-36203659e5f6 + - 0f922864-719f-476f-8cee-dea5a2626be9 status: 200 OK code: 200 duration: "" @@ -410,21 +509,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/a4f4a567-1f05-4f1e-a57f-025fe27a83c3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b279a542-48b9-4718-960e-ac5427be5530 method: GET response: - body: '{"id":"a4f4a567-1f05-4f1e-a57f-025fe27a83c3","name":"tf-lb-frt-mystifying-pike","inbound_port":80,"backend":{"id":"15965e0e-5056-45b8-bb22-e68e70985a6e","name":"tf-lb-bkd-lucid-galois","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.514541Z","updated_at":"2021-05-17T12:47:46.514541Z"},"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"timeout_client":null,"certificate":null,"certificate_ids":[],"created_at":"2021-05-17T12:47:47.021146Z","updated_at":"2021-05-17T12:47:47.021146Z"}' + body: '{"id":"b279a542-48b9-4718-960e-ac5427be5530","name":"tf-lb-frt-strange-shtern","inbound_port":80,"backend":{"id":"3371e412-fe4e-48c2-94b8-692fa2199c18","name":"tf-lb-bkd-kind-napier","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:08:52.829260Z","updated_at":"2021-11-04T13:08:52.829260Z"},"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":null,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:08:53.689186Z","updated_at":"2021-11-04T13:08:53.689186Z"}' headers: Content-Length: - - "2510" + - "2592" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:48 GMT + - Thu, 04 Nov 2021 13:08:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -434,7 +533,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad0e5446-574c-4a03-a01b-9d6bc358da47 + - e16ba065-e985-4243-bc48-bd87e0c0ec44 status: 200 OK code: 200 duration: "" @@ -443,12 +542,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb91f686-b8c3-4957-aeb5-1f390f3894af + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "314" @@ -457,7 +556,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:48 GMT + - Thu, 04 Nov 2021 13:08:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +566,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6295f3e4-c61a-47ed-ac88-540af9c9c462 + - 8f94be6f-4467-43a2-af57-61fa967ec2bf status: 200 OK code: 200 duration: "" @@ -476,21 +575,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/29be0f4a-a2e9-4538-93e4-2307c339e12b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb method: GET response: - body: '{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[{"id":"1a45d4c3-e388-4bad-be17-9d89290988e2","status":"ready","ip_address":"10.70.30.115","created_at":"2021-05-17T12:35:23.436164Z","updated_at":"2021-05-17T12:47:47.330092Z","region":"fr-par","zone":"fr-par-1"},{"id":"182d3a67-6a72-481d-ba7d-fa408ad383e0","status":"ready","ip_address":"10.70.46.79","created_at":"2021-05-17T12:37:37.552648Z","updated_at":"2021-05-17T12:47:47.404420Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[{"id":"8d6c2814-daf0-4e31-8b86-6865d1ba266d","status":"ready","ip_address":"10.68.194.143","created_at":"2021-11-04T13:06:47.299420Z","updated_at":"2021-11-04T13:08:54.036918Z","region":"fr-par","zone":"fr-par-1"},{"id":"03a14f93-b019-4824-b91d-014c51a700f8","status":"ready","ip_address":"10.65.140.137","created_at":"2021-11-04T08:30:20.613805Z","updated_at":"2021-11-04T13:08:54.102711Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1232" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:48 GMT + - Thu, 04 Nov 2021 13:08:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,7 +599,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c5d5206-4390-4b76-8d9d-160664f27c31 + - 6b737eb9-d19c-4e1d-b9fd-728b86ec9c10 status: 200 OK code: 200 duration: "" @@ -509,21 +608,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/15965e0e-5056-45b8-bb22-e68e70985a6e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"15965e0e-5056-45b8-bb22-e68e70985a6e","name":"tf-lb-bkd-lucid-galois","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.514541Z","updated_at":"2021-05-17T12:47:46.514541Z"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1439" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:49 GMT + - Thu, 04 Nov 2021 13:08:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -533,7 +632,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79e7eec4-627e-4c05-b58a-43cda5ababbd + - d4be631f-9fd3-4493-929f-9b164659177a status: 200 OK code: 200 duration: "" @@ -542,21 +641,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/a4f4a567-1f05-4f1e-a57f-025fe27a83c3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3371e412-fe4e-48c2-94b8-692fa2199c18 method: GET response: - body: '{"id":"a4f4a567-1f05-4f1e-a57f-025fe27a83c3","name":"tf-lb-frt-mystifying-pike","inbound_port":80,"backend":{"id":"15965e0e-5056-45b8-bb22-e68e70985a6e","name":"tf-lb-bkd-lucid-galois","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.514541Z","updated_at":"2021-05-17T12:47:46.514541Z"},"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"timeout_client":null,"certificate":null,"certificate_ids":[],"created_at":"2021-05-17T12:47:47.021146Z","updated_at":"2021-05-17T12:47:47.021146Z"}' + body: '{"id":"3371e412-fe4e-48c2-94b8-692fa2199c18","name":"tf-lb-bkd-kind-napier","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[{"id":"03a14f93-b019-4824-b91d-014c51a700f8","status":"ready","ip_address":"10.65.140.137","created_at":"2021-11-04T08:30:20.613805Z","updated_at":"2021-11-04T13:08:54.102711Z","region":"fr-par","zone":"fr-par-1"},{"id":"8d6c2814-daf0-4e31-8b86-6865d1ba266d","status":"ready","ip_address":"10.68.194.143","created_at":"2021-11-04T13:06:47.299420Z","updated_at":"2021-11-04T13:08:54.036918Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:08:52.829260Z","updated_at":"2021-11-04T13:08:52.829260Z"}' headers: Content-Length: - - "2510" + - "1907" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:49 GMT + - Thu, 04 Nov 2021 13:08:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -566,7 +665,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49f8c1ca-3ce5-4d00-8998-d4a143bfd300 + - 4688ff63-94e1-4587-8097-0c85e0615e68 status: 200 OK code: 200 duration: "" @@ -575,21 +674,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/a4f4a567-1f05-4f1e-a57f-025fe27a83c3/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b279a542-48b9-4718-960e-ac5427be5530 method: GET response: - body: '{"acls":[],"total_count":0}' + body: '{"id":"b279a542-48b9-4718-960e-ac5427be5530","name":"tf-lb-frt-strange-shtern","inbound_port":80,"backend":{"id":"3371e412-fe4e-48c2-94b8-692fa2199c18","name":"tf-lb-bkd-kind-napier","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:08:52.829260Z","updated_at":"2021-11-04T13:08:52.829260Z"},"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":null,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:08:53.689186Z","updated_at":"2021-11-04T13:08:53.689186Z"}' headers: Content-Length: - - "27" + - "2592" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:49 GMT + - Thu, 04 Nov 2021 13:08:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -599,7 +698,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38f31fcb-a7b2-429a-9d86-2768716cdb38 + - 3ab6519e-f453-4667-b7c5-da8bdbf58333 status: 200 OK code: 200 duration: "" @@ -608,21 +707,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb91f686-b8c3-4957-aeb5-1f390f3894af + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b279a542-48b9-4718-960e-ac5427be5530/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "314" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:50 GMT + - Thu, 04 Nov 2021 13:08:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -632,7 +731,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49365cd3-f3a4-4319-904a-9ae4cfe61452 + - c194461e-7909-4f94-9f45-d60a6028aab1 status: 200 OK code: 200 duration: "" @@ -641,21 +740,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/29be0f4a-a2e9-4538-93e4-2307c339e12b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[{"id":"1a45d4c3-e388-4bad-be17-9d89290988e2","status":"ready","ip_address":"10.70.30.115","created_at":"2021-05-17T12:35:23.436164Z","updated_at":"2021-05-17T12:47:47.330092Z","region":"fr-par","zone":"fr-par-1"},{"id":"182d3a67-6a72-481d-ba7d-fa408ad383e0","status":"ready","ip_address":"10.70.46.79","created_at":"2021-05-17T12:37:37.552648Z","updated_at":"2021-05-17T12:47:47.404420Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1232" + - "314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:50 GMT + - Thu, 04 Nov 2021 13:08:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -665,7 +764,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f65ca75-f467-4eec-8365-156f74a04053 + - 5c8bdb5b-808a-4956-8e15-ffa9d70fdb71 status: 200 OK code: 200 duration: "" @@ -674,21 +773,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/15965e0e-5056-45b8-bb22-e68e70985a6e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb method: GET response: - body: '{"id":"15965e0e-5056-45b8-bb22-e68e70985a6e","name":"tf-lb-bkd-lucid-galois","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.514541Z","updated_at":"2021-05-17T12:47:46.514541Z"}' + body: '{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[{"id":"8d6c2814-daf0-4e31-8b86-6865d1ba266d","status":"ready","ip_address":"10.68.194.143","created_at":"2021-11-04T13:06:47.299420Z","updated_at":"2021-11-04T13:08:54.036918Z","region":"fr-par","zone":"fr-par-1"},{"id":"03a14f93-b019-4824-b91d-014c51a700f8","status":"ready","ip_address":"10.65.140.137","created_at":"2021-11-04T08:30:20.613805Z","updated_at":"2021-11-04T13:08:54.102711Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1439" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:50 GMT + - Thu, 04 Nov 2021 13:08:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -698,7 +797,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd062d8a-c63d-4ade-b299-c70bc7e118a2 + - 31e823f2-f12e-4d22-8770-450b7b858c89 status: 200 OK code: 200 duration: "" @@ -707,21 +806,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/a4f4a567-1f05-4f1e-a57f-025fe27a83c3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"a4f4a567-1f05-4f1e-a57f-025fe27a83c3","name":"tf-lb-frt-mystifying-pike","inbound_port":80,"backend":{"id":"15965e0e-5056-45b8-bb22-e68e70985a6e","name":"tf-lb-bkd-lucid-galois","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.514541Z","updated_at":"2021-05-17T12:47:46.514541Z"},"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"timeout_client":null,"certificate":null,"certificate_ids":[],"created_at":"2021-05-17T12:47:47.021146Z","updated_at":"2021-05-17T12:47:47.021146Z"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "2510" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:50 GMT + - Thu, 04 Nov 2021 13:08:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -731,7 +830,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e37f0553-2fda-4cc5-b726-2351f1b12d81 + - 4f3e14b5-cdf2-4358-b25f-573c4bc2e69e status: 200 OK code: 200 duration: "" @@ -740,21 +839,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/a4f4a567-1f05-4f1e-a57f-025fe27a83c3/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3371e412-fe4e-48c2-94b8-692fa2199c18 method: GET response: - body: '{"acls":[],"total_count":0}' + body: '{"id":"3371e412-fe4e-48c2-94b8-692fa2199c18","name":"tf-lb-bkd-kind-napier","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[{"id":"03a14f93-b019-4824-b91d-014c51a700f8","status":"ready","ip_address":"10.65.140.137","created_at":"2021-11-04T08:30:20.613805Z","updated_at":"2021-11-04T13:08:54.102711Z","region":"fr-par","zone":"fr-par-1"},{"id":"8d6c2814-daf0-4e31-8b86-6865d1ba266d","status":"ready","ip_address":"10.68.194.143","created_at":"2021-11-04T13:06:47.299420Z","updated_at":"2021-11-04T13:08:54.036918Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:08:52.829260Z","updated_at":"2021-11-04T13:08:52.829260Z"}' headers: Content-Length: - - "27" + - "1907" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:50 GMT + - Thu, 04 Nov 2021 13:08:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -764,32 +863,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 363a418c-9762-4b60-939a-70f91793e9bf + - 1c44dc61-ccf2-496f-89a3-a809fcf41c8b status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-test","inbound_port":443,"backend_id":"15965e0e-5056-45b8-bb22-e68e70985a6e","certificate_id":null,"certificate_ids":null,"timeout_client":30000}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/a4f4a567-1f05-4f1e-a57f-025fe27a83c3 - method: PUT + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b279a542-48b9-4718-960e-ac5427be5530 + method: GET response: - body: '{"id":"a4f4a567-1f05-4f1e-a57f-025fe27a83c3","name":"tf-test","inbound_port":443,"backend":{"id":"15965e0e-5056-45b8-bb22-e68e70985a6e","name":"tf-lb-bkd-lucid-galois","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.514541Z","updated_at":"2021-05-17T12:47:46.514541Z"},"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-05-17T12:47:47.021146Z","updated_at":"2021-05-17T12:47:51.063370Z"}' + body: '{"id":"b279a542-48b9-4718-960e-ac5427be5530","name":"tf-lb-frt-strange-shtern","inbound_port":80,"backend":{"id":"3371e412-fe4e-48c2-94b8-692fa2199c18","name":"tf-lb-bkd-kind-napier","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:08:52.829260Z","updated_at":"2021-11-04T13:08:52.829260Z"},"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":null,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:08:53.689186Z","updated_at":"2021-11-04T13:08:53.689186Z"}' headers: Content-Length: - - "2494" + - "2592" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:51 GMT + - Thu, 04 Nov 2021 13:08:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -799,7 +896,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17c86f4a-dede-485d-a04c-33eaedbad0af + - c2be881e-b4eb-4f1b-87fe-91264bad2e85 status: 200 OK code: 200 duration: "" @@ -808,9 +905,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/a4f4a567-1f05-4f1e-a57f-025fe27a83c3/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b279a542-48b9-4718-960e-ac5427be5530/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' @@ -822,7 +919,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:51 GMT + - Thu, 04 Nov 2021 13:08:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -832,30 +929,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efa09578-cc60-425b-89b3-ea89c92e5091 + - acb83fab-29c7-4c72-8e80-3cd8d99ed9fc status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"name":"tf-test","inbound_port":443,"backend_id":"3371e412-fe4e-48c2-94b8-692fa2199c18","certificate_id":null,"certificate_ids":null,"timeout_client":30000}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/a4f4a567-1f05-4f1e-a57f-025fe27a83c3 - method: GET + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b279a542-48b9-4718-960e-ac5427be5530 + method: PUT response: - body: '{"id":"a4f4a567-1f05-4f1e-a57f-025fe27a83c3","name":"tf-test","inbound_port":443,"backend":{"id":"15965e0e-5056-45b8-bb22-e68e70985a6e","name":"tf-lb-bkd-lucid-galois","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.514541Z","updated_at":"2021-05-17T12:47:46.514541Z"},"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-05-17T12:47:47.021146Z","updated_at":"2021-05-17T12:47:51.063370Z"}' + body: '{"id":"b279a542-48b9-4718-960e-ac5427be5530","name":"tf-test","inbound_port":443,"backend":{"id":"3371e412-fe4e-48c2-94b8-692fa2199c18","name":"tf-lb-bkd-kind-napier","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:08:52.829260Z","updated_at":"2021-11-04T13:08:52.829260Z"},"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[{"id":"8d6c2814-daf0-4e31-8b86-6865d1ba266d","status":"pending","ip_address":"10.68.194.143","created_at":"2021-11-04T13:06:47.299420Z","updated_at":"2021-11-04T13:08:56.733979924Z","region":"fr-par","zone":"fr-par-1"},{"id":"03a14f93-b019-4824-b91d-014c51a700f8","status":"pending","ip_address":"10.65.140.137","created_at":"2021-11-04T08:30:20.613805Z","updated_at":"2021-11-04T13:08:56.815700140Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:08:53.689186Z","updated_at":"2021-11-04T13:08:56.689311Z"}' headers: Content-Length: - - "2494" + - "3014" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:51 GMT + - Thu, 04 Nov 2021 13:08:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -865,7 +964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc3e8e2f-c5fc-4ecf-8d39-d774dcd36b00 + - be3a7bf5-9ac4-488c-9ad5-7280e15b8417 status: 200 OK code: 200 duration: "" @@ -874,9 +973,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/a4f4a567-1f05-4f1e-a57f-025fe27a83c3/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b279a542-48b9-4718-960e-ac5427be5530/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' @@ -888,7 +987,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:51 GMT + - Thu, 04 Nov 2021 13:08:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -898,7 +997,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f475016c-b595-41bc-ac65-761ed7881f68 + - cb2dd809-a6b1-49c3-9fcf-54d4d7242d39 status: 200 OK code: 200 duration: "" @@ -907,21 +1006,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/a4f4a567-1f05-4f1e-a57f-025fe27a83c3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b279a542-48b9-4718-960e-ac5427be5530 method: GET response: - body: '{"id":"a4f4a567-1f05-4f1e-a57f-025fe27a83c3","name":"tf-test","inbound_port":443,"backend":{"id":"15965e0e-5056-45b8-bb22-e68e70985a6e","name":"tf-lb-bkd-lucid-galois","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.514541Z","updated_at":"2021-05-17T12:47:46.514541Z"},"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-05-17T12:47:47.021146Z","updated_at":"2021-05-17T12:47:51.063370Z"}' + body: '{"id":"b279a542-48b9-4718-960e-ac5427be5530","name":"tf-test","inbound_port":443,"backend":{"id":"3371e412-fe4e-48c2-94b8-692fa2199c18","name":"tf-lb-bkd-kind-napier","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:08:52.829260Z","updated_at":"2021-11-04T13:08:52.829260Z"},"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:08:53.689186Z","updated_at":"2021-11-04T13:08:56.689311Z"}' headers: Content-Length: - - "2494" + - "2577" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:52 GMT + - Thu, 04 Nov 2021 13:08:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -931,7 +1030,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a489b798-c2c7-4f03-ab5c-1d302e758462 + - deff3c65-6927-4091-a549-23e9e5c8d826 status: 200 OK code: 200 duration: "" @@ -940,21 +1039,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb91f686-b8c3-4957-aeb5-1f390f3894af + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b279a542-48b9-4718-960e-ac5427be5530/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "314" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:52 GMT + - Thu, 04 Nov 2021 13:08:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -964,7 +1063,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02ac552a-284f-4989-8d0f-aa4d21fc4b41 + - 7707c6eb-97b6-4665-bb0a-9d35fefa4c3c status: 200 OK code: 200 duration: "" @@ -973,21 +1072,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/29be0f4a-a2e9-4538-93e4-2307c339e12b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b279a542-48b9-4718-960e-ac5427be5530 method: GET response: - body: '{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[{"id":"1a45d4c3-e388-4bad-be17-9d89290988e2","status":"pending","ip_address":"10.70.30.115","created_at":"2021-05-17T12:35:23.436164Z","updated_at":"2021-05-17T12:47:51.132026Z","region":"fr-par","zone":"fr-par-1"},{"id":"182d3a67-6a72-481d-ba7d-fa408ad383e0","status":"pending","ip_address":"10.70.46.79","created_at":"2021-05-17T12:37:37.552648Z","updated_at":"2021-05-17T12:47:51.283515Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"b279a542-48b9-4718-960e-ac5427be5530","name":"tf-test","inbound_port":443,"backend":{"id":"3371e412-fe4e-48c2-94b8-692fa2199c18","name":"tf-lb-bkd-kind-napier","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:08:52.829260Z","updated_at":"2021-11-04T13:08:52.829260Z"},"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:08:53.689186Z","updated_at":"2021-11-04T13:08:56.689311Z"}' headers: Content-Length: - - "1236" + - "2577" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:52 GMT + - Thu, 04 Nov 2021 13:08:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -997,7 +1096,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f35b8dd3-207b-418b-a828-342a90571ff1 + - 0d2d00d7-cc95-46be-998b-0a39756f315c status: 200 OK code: 200 duration: "" @@ -1006,21 +1105,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/15965e0e-5056-45b8-bb22-e68e70985a6e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"15965e0e-5056-45b8-bb22-e68e70985a6e","name":"tf-lb-bkd-lucid-galois","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.514541Z","updated_at":"2021-05-17T12:47:46.514541Z"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1439" + - "314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:52 GMT + - Thu, 04 Nov 2021 13:08:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1030,7 +1129,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edb1bd9b-63e7-4224-842c-8eac465d5973 + - fd1249b5-8eb6-44ff-bdb8-709d5cf32cc7 status: 200 OK code: 200 duration: "" @@ -1039,21 +1138,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/a4f4a567-1f05-4f1e-a57f-025fe27a83c3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb method: GET response: - body: '{"id":"a4f4a567-1f05-4f1e-a57f-025fe27a83c3","name":"tf-test","inbound_port":443,"backend":{"id":"15965e0e-5056-45b8-bb22-e68e70985a6e","name":"tf-lb-bkd-lucid-galois","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-05-17T12:47:46.514541Z","updated_at":"2021-05-17T12:47:46.514541Z"},"lb":{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:46.059879Z","region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-05-17T12:47:47.021146Z","updated_at":"2021-05-17T12:47:51.063370Z"}' + body: '{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[{"id":"8d6c2814-daf0-4e31-8b86-6865d1ba266d","status":"ready","ip_address":"10.68.194.143","created_at":"2021-11-04T13:06:47.299420Z","updated_at":"2021-11-04T13:08:57.016135Z","region":"fr-par","zone":"fr-par-1"},{"id":"03a14f93-b019-4824-b91d-014c51a700f8","status":"ready","ip_address":"10.65.140.137","created_at":"2021-11-04T08:30:20.613805Z","updated_at":"2021-11-04T13:08:57.095416Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "2494" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:52 GMT + - Thu, 04 Nov 2021 13:08:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1063,7 +1162,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98ac091f-6348-4f02-97a4-b366d9fe9f97 + - 51dd9309-e02d-4c0e-99f9-ed6edd72ee7e status: 200 OK code: 200 duration: "" @@ -1072,21 +1171,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/a4f4a567-1f05-4f1e-a57f-025fe27a83c3/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb/private-networks?order_by=created_at_asc method: GET response: - body: '{"acls":[],"total_count":0}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "27" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:52 GMT + - Thu, 04 Nov 2021 13:08:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1096,7 +1195,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d18985b-a8a7-47e0-81f4-65cb8b8db8dd + - 1b3b822b-06de-4b8b-af1f-299bdf0344db status: 200 OK code: 200 duration: "" @@ -1105,19 +1204,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/a4f4a567-1f05-4f1e-a57f-025fe27a83c3 - method: DELETE + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3371e412-fe4e-48c2-94b8-692fa2199c18 + method: GET response: - body: "" + body: '{"id":"3371e412-fe4e-48c2-94b8-692fa2199c18","name":"tf-lb-bkd-kind-napier","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[{"id":"03a14f93-b019-4824-b91d-014c51a700f8","status":"ready","ip_address":"10.65.140.137","created_at":"2021-11-04T08:30:20.613805Z","updated_at":"2021-11-04T13:08:57.095416Z","region":"fr-par","zone":"fr-par-1"},{"id":"8d6c2814-daf0-4e31-8b86-6865d1ba266d","status":"ready","ip_address":"10.68.194.143","created_at":"2021-11-04T13:06:47.299420Z","updated_at":"2021-11-04T13:08:57.016135Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:08:52.829260Z","updated_at":"2021-11-04T13:08:52.829260Z"}' headers: + Content-Length: + - "1907" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:54 GMT + - Thu, 04 Nov 2021 13:08:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1127,28 +1228,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78d173ae-c742-417b-a3f4-b17ae39b7035 - status: 204 No Content - code: 204 + - 1d241b5d-0358-4872-87ba-f2c35da26c81 + status: 200 OK + code: 200 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/15965e0e-5056-45b8-bb22-e68e70985a6e - method: DELETE + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b279a542-48b9-4718-960e-ac5427be5530 + method: GET response: + body: '{"id":"b279a542-48b9-4718-960e-ac5427be5530","name":"tf-test","inbound_port":443,"backend":{"id":"3371e412-fe4e-48c2-94b8-692fa2199c18","name":"tf-lb-bkd-kind-napier","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:08:52.829260Z","updated_at":"2021-11-04T13:08:52.829260Z"},"lb":{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:08:53.689186Z","updated_at":"2021-11-04T13:08:56.689311Z"}' + headers: + Content-Length: + - "2577" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:08:58 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 84be5ee0-bc70-4a77-b963-d17324b5c826 + status: 200 OK + code: 200 + duration: "" +- request: body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b279a542-48b9-4718-960e-ac5427be5530/acls?order_by=created_at_asc&page=1 + method: GET + response: + body: '{"acls":[],"total_count":0}' headers: + Content-Length: + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:54 GMT + - Thu, 04 Nov 2021 13:08:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1158,18 +1294,18 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5226d338-de33-449b-b24e-34befcffa880 - status: 204 No Content - code: 204 + - 5e3950c9-28ea-41e4-a38a-80952582e6a2 + status: 200 OK + code: 200 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/29be0f4a-a2e9-4538-93e4-2307c339e12b?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b279a542-48b9-4718-960e-ac5427be5530 method: DELETE response: body: "" @@ -1179,7 +1315,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:55 GMT + - Thu, 04 Nov 2021 13:08:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1189,7 +1325,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09fd3cb2-f6e8-4cf7-88a0-dda4d7ebc272 + - 4f29b2b5-69f6-415d-bf44-9e667c5168f8 status: 204 No Content code: 204 duration: "" @@ -1198,21 +1334,19 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/29be0f4a-a2e9-4538-93e4-2307c339e12b - method: GET + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3371e412-fe4e-48c2-94b8-692fa2199c18 + method: DELETE response: - body: '{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"pending","instances":[{"id":"1a45d4c3-e388-4bad-be17-9d89290988e2","status":"pending","ip_address":"10.70.30.115","created_at":"2021-05-17T12:35:23.436164Z","updated_at":"2021-05-17T12:47:54.636575Z","region":"fr-par","zone":"fr-par-1"},{"id":"182d3a67-6a72-481d-ba7d-fa408ad383e0","status":"pending","ip_address":"10.70.46.79","created_at":"2021-05-17T12:37:37.552648Z","updated_at":"2021-05-17T12:47:54.721770Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:54.965721Z","region":"fr-par","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "1238" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:55 GMT + - Thu, 04 Nov 2021 13:08:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1222,30 +1356,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37dba0b9-cc83-4f8c-aee9-27153b06e21d - status: 200 OK - code: 200 + - 30c451fc-ee02-4afb-bdb3-602b792d511e + status: 204 No Content + code: 204 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/29be0f4a-a2e9-4538-93e4-2307c339e12b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb method: GET response: - body: '{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"pending","instances":[{"id":"1a45d4c3-e388-4bad-be17-9d89290988e2","status":"ready","ip_address":"10.70.30.115","created_at":"2021-05-17T12:35:23.436164Z","updated_at":"2021-05-17T12:47:56.668359Z","region":"fr-par","zone":"fr-par-1"},{"id":"182d3a67-6a72-481d-ba7d-fa408ad383e0","status":"ready","ip_address":"10.70.46.79","created_at":"2021-05-17T12:37:37.552648Z","updated_at":"2021-05-17T12:47:56.874815Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[{"id":"cb91f686-b8c3-4957-aeb5-1f390f3894af","ip_address":"51.159.112.173","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","reverse":"51-159-112-173.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:54.965721Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"ready","instances":[{"id":"8d6c2814-daf0-4e31-8b86-6865d1ba266d","status":"ready","ip_address":"10.68.194.143","created_at":"2021-11-04T13:06:47.299420Z","updated_at":"2021-11-04T13:08:59.458622Z","region":"fr-par","zone":"fr-par-1"},{"id":"03a14f93-b019-4824-b91d-014c51a700f8","status":"ready","ip_address":"10.65.140.137","created_at":"2021-11-04T08:30:20.613805Z","updated_at":"2021-11-04T13:08:59.531995Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:08:23.252916Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1234" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:57 GMT + - Thu, 04 Nov 2021 13:09:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1255,7 +1389,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01eead31-a996-4331-878a-97929e9fa275 + - 405c951d-9231-40b0-ba21-47fd8b15bd64 status: 200 OK code: 200 duration: "" @@ -1264,21 +1398,19 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/29be0f4a-a2e9-4538-93e4-2307c339e12b - method: GET + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb?release_ip=false + method: DELETE response: - body: '{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"pending","instances":[{"id":"1a45d4c3-e388-4bad-be17-9d89290988e2","status":"ready","ip_address":"10.70.30.115","created_at":"2021-05-17T12:35:23.436164Z","updated_at":"2021-05-17T12:47:56.668359Z","region":"fr-par","zone":"fr-par-1"},{"id":"182d3a67-6a72-481d-ba7d-fa408ad383e0","status":"ready","ip_address":"10.70.46.79","created_at":"2021-05-17T12:37:37.552648Z","updated_at":"2021-05-17T12:47:56.874815Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:54.965721Z","region":"fr-par","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "920" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:59 GMT + - Thu, 04 Nov 2021 13:09:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1288,30 +1420,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 869cd7ac-6787-4356-af3c-c06e081714a2 - status: 200 OK - code: 200 + - 6c4f4110-401a-427f-855b-6515aa3b020b + status: 204 No Content + code: 204 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/29be0f4a-a2e9-4538-93e4-2307c339e12b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb method: GET response: - body: '{"id":"29be0f4a-a2e9-4538-93e4-2307c339e12b","name":"test-lb","description":"","status":"pending","instances":[{"id":"1a45d4c3-e388-4bad-be17-9d89290988e2","status":"ready","ip_address":"10.70.30.115","created_at":"2021-05-17T12:35:23.436164Z","updated_at":"2021-05-17T12:47:56.668359Z","region":"fr-par","zone":"fr-par-1"},{"id":"182d3a67-6a72-481d-ba7d-fa408ad383e0","status":"ready","ip_address":"10.70.46.79","created_at":"2021-05-17T12:37:37.552648Z","updated_at":"2021-05-17T12:47:56.874815Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","ip":[],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-05-17T12:47:44.005333Z","updated_at":"2021-05-17T12:47:54.965721Z","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","name":"test-lb","description":"","status":"pending","instances":[{"id":"8d6c2814-daf0-4e31-8b86-6865d1ba266d","status":"ready","ip_address":"10.68.194.143","created_at":"2021-11-04T13:06:47.299420Z","updated_at":"2021-11-04T13:08:59.458622Z","region":"fr-par","zone":"fr-par-1"},{"id":"03a14f93-b019-4824-b91d-014c51a700f8","status":"ready","ip_address":"10.65.140.137","created_at":"2021-11-04T08:30:20.613805Z","updated_at":"2021-11-04T13:08:59.531995Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"d7d8b05b-2b90-4d61-87b2-d856265dafcb","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:08:22.176505Z","updated_at":"2021-11-04T13:09:00.175730Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "920" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:48:01 GMT + - Thu, 04 Nov 2021 13:09:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1321,7 +1453,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1c3f745-6e25-4e5b-b475-2c0a83f463fa + - da884537-13b5-4d4f-967c-94c8d291e3a7 status: 200 OK code: 200 duration: "" @@ -1330,9 +1462,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/29be0f4a-a2e9-4538-93e4-2307c339e12b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d7d8b05b-2b90-4d61-87b2-d856265dafcb method: GET response: body: '{"message":"lbs not Found"}' @@ -1344,7 +1476,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:48:03 GMT + - Thu, 04 Nov 2021 13:09:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1354,7 +1486,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dd77319-6ecd-4bd8-b120-cdb4480d9679 + - c5c11614-3836-459f-b2f5-4b0c46fae04e status: 404 Not Found code: 404 duration: "" @@ -1363,9 +1495,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb91f686-b8c3-4957-aeb5-1f390f3894af + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: DELETE response: body: "" @@ -1375,7 +1507,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:48:04 GMT + - Thu, 04 Nov 2021 13:09:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1385,7 +1517,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4bbdbd12-996a-4947-8006-bb43c7aa271e + - 3ba16880-c123-4fb4-ba0e-c908e6b7b476 status: 204 No Content code: 204 duration: "" @@ -1394,9 +1526,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/a4f4a567-1f05-4f1e-a57f-025fe27a83c3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b279a542-48b9-4718-960e-ac5427be5530 method: GET response: body: '{"message":"Not Found"}' @@ -1408,7 +1540,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:48:04 GMT + - Thu, 04 Nov 2021 13:09:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1418,7 +1550,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01d47502-220d-4df7-a608-fb4485f2264e + - c6fc7bb7-a415-4ce7-b7f7-74651483a86b status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/lb-private-network-basic.cassette.yaml b/scaleway/testdata/lb-private-network-basic.cassette.yaml deleted file mode 100644 index 4d9a2c88ec..0000000000 --- a/scaleway/testdata/lb-private-network-basic.cassette.yaml +++ /dev/null @@ -1,1626 +0,0 @@ ---- -version: 1 -interactions: -- request: - body: '{"name":"test-lb-pn","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks - method: POST - response: - body: '{"id":"31072968-e2ca-4f17-8f27-dc752cbcf564","name":"test-lb-pn","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:47:03.291590Z","updated_at":"2021-10-22T09:47:03.291590Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:03 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c55dc93c-e5db-4402-b86c-8a4ae9baf198 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/31072968-e2ca-4f17-8f27-dc752cbcf564 - method: GET - response: - body: '{"id":"31072968-e2ca-4f17-8f27-dc752cbcf564","name":"test-lb-pn","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:47:03.291590Z","updated_at":"2021-10-22T09:47:03.291590Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:03 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d5f8098d-696a-4356-bc87-6eb5a8c83de7 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/31072968-e2ca-4f17-8f27-dc752cbcf564 - method: GET - response: - body: '{"id":"31072968-e2ca-4f17-8f27-dc752cbcf564","name":"test-lb-pn","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:47:03.291590Z","updated_at":"2021-10-22T09:47:03.291590Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:03 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7a0c04f6-d4bc-482f-a679-7b07158b4c46 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/31072968-e2ca-4f17-8f27-dc752cbcf564 - method: GET - response: - body: '{"id":"31072968-e2ca-4f17-8f27-dc752cbcf564","name":"test-lb-pn","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:47:03.291590Z","updated_at":"2021-10-22T09:47:03.291590Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:04 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 28f572d6-05e6-4ff0-9ef9-b5ffd685c5b0 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","reverse":null}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips - method: POST - response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "276" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:04 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 499d50b4-f0b7-43df-bff6-c473dccbb0e3 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 - method: GET - response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "276" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:04 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6ecf6990-3241-48d0-bbfd-1fb663c20627 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","name":"test-lb","description":"","ip_id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs - method: POST - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992103760Z","updated_at":"2021-10-22T09:47:04.992103760Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "854" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:05 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a86c361e-1d25-42e0-a24f-6bf07b46f235 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6 - method: GET - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:04.992104Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "848" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:05 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 81e002ed-4e99-4eab-895e-45caab9d2a30 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6 - method: GET - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"ready","instances":[{"id":"d7724348-647d-4c26-b50a-66b34ec6290a","status":"ready","ip_address":"10.64.188.25","created_at":"2021-10-22T07:19:47.407913Z","updated_at":"2021-10-22T09:47:05.529423Z","region":"fr-par","zone":"fr-par-1"},{"id":"96e38350-687a-47a3-abf2-6b62c8f0ace3","status":"ready","ip_address":"10.64.158.123","created_at":"2021-10-22T07:26:07.246460Z","updated_at":"2021-10-22T09:47:05.838892Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:06.092269Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1272" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:07 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e3c99a0e-ed12-4357-bd0e-a492e700fdc2 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6 - method: GET - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"ready","instances":[{"id":"d7724348-647d-4c26-b50a-66b34ec6290a","status":"ready","ip_address":"10.64.188.25","created_at":"2021-10-22T07:19:47.407913Z","updated_at":"2021-10-22T09:47:05.529423Z","region":"fr-par","zone":"fr-par-1"},{"id":"96e38350-687a-47a3-abf2-6b62c8f0ace3","status":"ready","ip_address":"10.64.158.123","created_at":"2021-10-22T07:26:07.246460Z","updated_at":"2021-10-22T09:47:05.838892Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:06.092269Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1272" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:07 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cabc437e-abb7-473d-8312-5b0710289bfc - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/31072968-e2ca-4f17-8f27-dc752cbcf564 - method: GET - response: - body: '{"id":"31072968-e2ca-4f17-8f27-dc752cbcf564","name":"test-lb-pn","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:47:03.291590Z","updated_at":"2021-10-22T09:47:03.291590Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:07 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2bf6c47f-50dc-4c14-830a-089986b74d26 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 - method: GET - response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:07 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e4d9dd56-da59-45a4-9e13-4627323d49be - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6 - method: GET - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"ready","instances":[{"id":"d7724348-647d-4c26-b50a-66b34ec6290a","status":"ready","ip_address":"10.64.188.25","created_at":"2021-10-22T07:19:47.407913Z","updated_at":"2021-10-22T09:47:05.529423Z","region":"fr-par","zone":"fr-par-1"},{"id":"96e38350-687a-47a3-abf2-6b62c8f0ace3","status":"ready","ip_address":"10.64.158.123","created_at":"2021-10-22T07:26:07.246460Z","updated_at":"2021-10-22T09:47:05.838892Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:06.092269Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1272" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:07 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 308035cb-0045-47c6-a75a-a91e100727ca - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 - method: GET - response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:08 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ca1eb5a0-4396-4fb3-bff6-d917ab1f1a65 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/31072968-e2ca-4f17-8f27-dc752cbcf564 - method: GET - response: - body: '{"id":"31072968-e2ca-4f17-8f27-dc752cbcf564","name":"test-lb-pn","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:47:03.291590Z","updated_at":"2021-10-22T09:47:03.291590Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:08 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4c1be37b-3f4b-46b8-bb98-e97487d3cbc0 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6 - method: GET - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"ready","instances":[{"id":"d7724348-647d-4c26-b50a-66b34ec6290a","status":"ready","ip_address":"10.64.188.25","created_at":"2021-10-22T07:19:47.407913Z","updated_at":"2021-10-22T09:47:05.529423Z","region":"fr-par","zone":"fr-par-1"},{"id":"96e38350-687a-47a3-abf2-6b62c8f0ace3","status":"ready","ip_address":"10.64.158.123","created_at":"2021-10-22T07:26:07.246460Z","updated_at":"2021-10-22T09:47:05.838892Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:06.092269Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1272" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:08 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 39f7e032-f617-426c-bbbe-cd707794600d - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6 - method: GET - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"ready","instances":[{"id":"d7724348-647d-4c26-b50a-66b34ec6290a","status":"ready","ip_address":"10.64.188.25","created_at":"2021-10-22T07:19:47.407913Z","updated_at":"2021-10-22T09:47:05.529423Z","region":"fr-par","zone":"fr-par-1"},{"id":"96e38350-687a-47a3-abf2-6b62c8f0ace3","status":"ready","ip_address":"10.64.158.123","created_at":"2021-10-22T07:26:07.246460Z","updated_at":"2021-10-22T09:47:05.838892Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:06.092269Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1272" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:09 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bbc3003a-898f-4fe9-b23a-523fce31bfcf - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6 - method: GET - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"ready","instances":[{"id":"d7724348-647d-4c26-b50a-66b34ec6290a","status":"ready","ip_address":"10.64.188.25","created_at":"2021-10-22T07:19:47.407913Z","updated_at":"2021-10-22T09:47:05.529423Z","region":"fr-par","zone":"fr-par-1"},{"id":"96e38350-687a-47a3-abf2-6b62c8f0ace3","status":"ready","ip_address":"10.64.158.123","created_at":"2021-10-22T07:26:07.246460Z","updated_at":"2021-10-22T09:47:05.838892Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:06.092269Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1272" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:09 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 20f1a026-cb34-4743-b96a-a513f5a2d507 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6/private-networks/31072968-e2ca-4f17-8f27-dc752cbcf564/attach - method: POST - response: - body: '{"lb":{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"ready","instances":[{"id":"d7724348-647d-4c26-b50a-66b34ec6290a","status":"ready","ip_address":"10.64.188.25","created_at":"2021-10-22T07:19:47.407913Z","updated_at":"2021-10-22T09:47:05.529423Z","region":"fr-par","zone":"fr-par-1"},{"id":"96e38350-687a-47a3-abf2-6b62c8f0ace3","status":"ready","ip_address":"10.64.158.123","created_at":"2021-10-22T07:26:07.246460Z","updated_at":"2021-10-22T09:47:05.838892Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:06.092269Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"31072968-e2ca-4f17-8f27-dc752cbcf564","status":"pending","created_at":"2021-10-22T09:47:09.314216764Z","updated_at":"2021-10-22T09:47:09.314216764Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}' - headers: - Content-Length: - - "1513" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:09 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 76e2ce5d-ce7f-4d4c-ade0-26a0147a18c3 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6 - method: GET - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"ready","instances":[{"id":"d7724348-647d-4c26-b50a-66b34ec6290a","status":"ready","ip_address":"10.64.188.25","created_at":"2021-10-22T07:19:47.407913Z","updated_at":"2021-10-22T09:47:05.529423Z","region":"fr-par","zone":"fr-par-1"},{"id":"96e38350-687a-47a3-abf2-6b62c8f0ace3","status":"ready","ip_address":"10.64.158.123","created_at":"2021-10-22T07:26:07.246460Z","updated_at":"2021-10-22T09:47:05.838892Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:06.092269Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1272" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:09 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b6a7df24-9b20-4dd2-9b2e-85f5493f4186 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6/private-networks?order_by=created_at_asc - method: GET - response: - body: '{"private_network":[{"lb":{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:06.092269Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"31072968-e2ca-4f17-8f27-dc752cbcf564","status":"pending","created_at":"2021-10-22T09:47:09.314217Z","updated_at":"2021-10-22T09:47:09.314217Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}],"total_count":1}' - headers: - Content-Length: - - "1119" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:09 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 41599c5d-e0b9-481c-b254-1a4bdb5155fa - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6/private-networks?order_by=created_at_asc - method: GET - response: - body: '{"private_network":[{"lb":{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:06.092269Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"31072968-e2ca-4f17-8f27-dc752cbcf564","status":"pending","created_at":"2021-10-22T09:47:09.314217Z","updated_at":"2021-10-22T09:47:09.314217Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}],"total_count":1}' - headers: - Content-Length: - - "1119" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:10 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 780760e9-3905-41f6-9600-7726b6fab05b - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/31072968-e2ca-4f17-8f27-dc752cbcf564 - method: GET - response: - body: '{"id":"31072968-e2ca-4f17-8f27-dc752cbcf564","name":"test-lb-pn","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:47:03.291590Z","updated_at":"2021-10-22T09:47:03.291590Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:10 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5d77cdf2-c25b-4171-a2e8-b2708ec7be43 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 - method: GET - response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:10 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5c15db28-824b-45f4-8910-b3d6e55d824f - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6 - method: GET - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"ready","instances":[{"id":"d7724348-647d-4c26-b50a-66b34ec6290a","status":"ready","ip_address":"10.64.188.25","created_at":"2021-10-22T07:19:47.407913Z","updated_at":"2021-10-22T09:47:05.529423Z","region":"fr-par","zone":"fr-par-1"},{"id":"96e38350-687a-47a3-abf2-6b62c8f0ace3","status":"ready","ip_address":"10.64.158.123","created_at":"2021-10-22T07:26:07.246460Z","updated_at":"2021-10-22T09:47:05.838892Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:06.092269Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1272" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:10 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fb651fd9-64b5-4ed1-b14e-cfd1ed939db6 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6/private-networks?order_by=created_at_asc - method: GET - response: - body: '{"private_network":[{"lb":{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:06.092269Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"31072968-e2ca-4f17-8f27-dc752cbcf564","status":"pending","created_at":"2021-10-22T09:47:09.314217Z","updated_at":"2021-10-22T09:47:09.314217Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}],"total_count":1}' - headers: - Content-Length: - - "1119" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:10 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 98e8429f-2cb2-4f03-82c6-6d5423bd7995 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/31072968-e2ca-4f17-8f27-dc752cbcf564 - method: GET - response: - body: '{"id":"31072968-e2ca-4f17-8f27-dc752cbcf564","name":"test-lb-pn","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:47:03.291590Z","updated_at":"2021-10-22T09:47:03.291590Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:11 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 24f0726a-aa24-496b-b526-b96bc9b9655f - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 - method: GET - response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:11 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d236dd5d-b3f8-4492-b4db-ac796e6c2154 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6/private-networks?order_by=created_at_asc - method: GET - response: - body: '{"private_network":[{"lb":{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:06.092269Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"31072968-e2ca-4f17-8f27-dc752cbcf564","status":"pending","created_at":"2021-10-22T09:47:09.314217Z","updated_at":"2021-10-22T09:47:09.314217Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}],"total_count":1}' - headers: - Content-Length: - - "1119" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:11 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c4d3af73-ad52-4a3f-8ce3-30fd168d02e6 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6 - method: GET - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"ready","instances":[{"id":"d7724348-647d-4c26-b50a-66b34ec6290a","status":"ready","ip_address":"10.64.188.25","created_at":"2021-10-22T07:19:47.407913Z","updated_at":"2021-10-22T09:47:05.529423Z","region":"fr-par","zone":"fr-par-1"},{"id":"96e38350-687a-47a3-abf2-6b62c8f0ace3","status":"ready","ip_address":"10.64.158.123","created_at":"2021-10-22T07:26:07.246460Z","updated_at":"2021-10-22T09:47:05.838892Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:06.092269Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1272" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:11 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7b042894-f2b9-465a-b075-f35423e31baf - status: 200 OK - code: 200 - duration: "" -- request: - body: '{}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6/private-networks/31072968-e2ca-4f17-8f27-dc752cbcf564/detach - method: POST - response: - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:11 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 05447199-261d-47b2-b1ef-a45ff7858470 - status: 204 No Content - code: 204 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6 - method: GET - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"ready","instances":[{"id":"d7724348-647d-4c26-b50a-66b34ec6290a","status":"ready","ip_address":"10.64.188.25","created_at":"2021-10-22T07:19:47.407913Z","updated_at":"2021-10-22T09:47:05.529423Z","region":"fr-par","zone":"fr-par-1"},{"id":"96e38350-687a-47a3-abf2-6b62c8f0ace3","status":"ready","ip_address":"10.64.158.123","created_at":"2021-10-22T07:26:07.246460Z","updated_at":"2021-10-22T09:47:05.838892Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:06.092269Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1272" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:11 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 537ad010-d965-4b3a-96a6-ec6c86efbe94 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6 - method: GET - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb","description":"","status":"ready","instances":[{"id":"d7724348-647d-4c26-b50a-66b34ec6290a","status":"ready","ip_address":"10.64.188.25","created_at":"2021-10-22T07:19:47.407913Z","updated_at":"2021-10-22T09:47:05.529423Z","region":"fr-par","zone":"fr-par-1"},{"id":"96e38350-687a-47a3-abf2-6b62c8f0ace3","status":"ready","ip_address":"10.64.158.123","created_at":"2021-10-22T07:26:07.246460Z","updated_at":"2021-10-22T09:47:05.838892Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:06.092269Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1272" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:11 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0b0b2d5c-771d-45b9-b8d9-e0a6ee0c0f4d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"name":"test-lb2","description":"","tags":[],"ssl_compatibility_level":"ssl_compatibility_level_unknown"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6 - method: PUT - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb2","description":"","status":"ready","instances":[{"id":"d7724348-647d-4c26-b50a-66b34ec6290a","status":"pending","ip_address":"10.64.188.25","created_at":"2021-10-22T07:19:47.407913Z","updated_at":"2021-10-22T09:47:12.088714516Z","region":"fr-par","zone":"fr-par-1"},{"id":"96e38350-687a-47a3-abf2-6b62c8f0ace3","status":"pending","ip_address":"10.64.158.123","created_at":"2021-10-22T07:26:07.246460Z","updated_at":"2021-10-22T09:47:12.144349569Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:12.057664Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1283" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:12 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dd3e67fe-c7d4-487b-9cd0-6c087f08b4cf - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6 - method: GET - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb2","description":"","status":"ready","instances":[{"id":"d7724348-647d-4c26-b50a-66b34ec6290a","status":"ready","ip_address":"10.64.188.25","created_at":"2021-10-22T07:19:47.407913Z","updated_at":"2021-10-22T09:47:12.360047Z","region":"fr-par","zone":"fr-par-1"},{"id":"96e38350-687a-47a3-abf2-6b62c8f0ace3","status":"ready","ip_address":"10.64.158.123","created_at":"2021-10-22T07:26:07.246460Z","updated_at":"2021-10-22T09:47:12.396931Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:12.057664Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1273" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:12 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d64add0f-0942-4c21-b11a-860fed04af2c - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 - method: GET - response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:13 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9e381350-94af-4f9a-ad14-f92a088b77b1 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/31072968-e2ca-4f17-8f27-dc752cbcf564 - method: GET - response: - body: '{"id":"31072968-e2ca-4f17-8f27-dc752cbcf564","name":"test-lb-pn","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:47:03.291590Z","updated_at":"2021-10-22T09:47:03.291590Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:13 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1c40b14b-48af-4044-84f8-dfa00fc3e8c4 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6 - method: GET - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb2","description":"","status":"ready","instances":[{"id":"d7724348-647d-4c26-b50a-66b34ec6290a","status":"ready","ip_address":"10.64.188.25","created_at":"2021-10-22T07:19:47.407913Z","updated_at":"2021-10-22T09:47:12.360047Z","region":"fr-par","zone":"fr-par-1"},{"id":"96e38350-687a-47a3-abf2-6b62c8f0ace3","status":"ready","ip_address":"10.64.158.123","created_at":"2021-10-22T07:26:07.246460Z","updated_at":"2021-10-22T09:47:12.396931Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:12.057664Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1273" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:13 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2882f50e-ba88-4ecb-8829-bb172a8e6e8e - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/31072968-e2ca-4f17-8f27-dc752cbcf564 - method: GET - response: - body: '{"id":"31072968-e2ca-4f17-8f27-dc752cbcf564","name":"test-lb-pn","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:47:03.291590Z","updated_at":"2021-10-22T09:47:03.291590Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:13 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2f2cdaf2-3369-4a0e-97d7-c653145bd370 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 - method: GET - response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:13 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - abfeea45-b29c-4468-b443-9e62b44e4dee - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6 - method: GET - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb2","description":"","status":"ready","instances":[{"id":"d7724348-647d-4c26-b50a-66b34ec6290a","status":"ready","ip_address":"10.64.188.25","created_at":"2021-10-22T07:19:47.407913Z","updated_at":"2021-10-22T09:47:12.360047Z","region":"fr-par","zone":"fr-par-1"},{"id":"96e38350-687a-47a3-abf2-6b62c8f0ace3","status":"ready","ip_address":"10.64.158.123","created_at":"2021-10-22T07:26:07.246460Z","updated_at":"2021-10-22T09:47:12.396931Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:12.057664Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1273" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:13 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c9191d5c-3bc9-4527-ae77-2fcedc4f6dfa - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"name":"test-lb-without-attachment","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/31072968-e2ca-4f17-8f27-dc752cbcf564 - method: PATCH - response: - body: '{"id":"31072968-e2ca-4f17-8f27-dc752cbcf564","name":"test-lb-without-attachment","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:47:03.291590Z","updated_at":"2021-10-22T09:47:14.008467Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "304" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:14 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e5a753ed-41d4-44b4-a548-c68185456bda - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6 - method: GET - response: - body: '{"id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","name":"test-lb2","description":"","status":"ready","instances":[{"id":"d7724348-647d-4c26-b50a-66b34ec6290a","status":"ready","ip_address":"10.64.188.25","created_at":"2021-10-22T07:19:47.407913Z","updated_at":"2021-10-22T09:47:12.360047Z","region":"fr-par","zone":"fr-par-1"},{"id":"96e38350-687a-47a3-abf2-6b62c8f0ace3","status":"ready","ip_address":"10.64.158.123","created_at":"2021-10-22T07:26:07.246460Z","updated_at":"2021-10-22T09:47:12.396931Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"2ebd1991-67a1-4822-bf24-21f2abfed7e6","reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:47:04.992104Z","updated_at":"2021-10-22T09:47:12.057664Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1273" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:14 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a0509932-8db3-4632-9b79-6a803704e926 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/31072968-e2ca-4f17-8f27-dc752cbcf564 - method: GET - response: - body: '{"id":"31072968-e2ca-4f17-8f27-dc752cbcf564","name":"test-lb-without-attachment","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:47:03.291590Z","updated_at":"2021-10-22T09:47:14.008467Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "304" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:14 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fe1de458-9d5e-4470-9e15-2ec8262876a1 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2ebd1991-67a1-4822-bf24-21f2abfed7e6?release_ip=false - method: DELETE - response: - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:14 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6b4550b8-902c-4f42-b0fe-3e36089074e9 - status: 204 No Content - code: 204 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 - method: GET - response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "276" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:14 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c34ab085-f327-4e95-8f05-3733c5d9daf3 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/31072968-e2ca-4f17-8f27-dc752cbcf564 - method: GET - response: - body: '{"id":"31072968-e2ca-4f17-8f27-dc752cbcf564","name":"test-lb-without-attachment","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:47:03.291590Z","updated_at":"2021-10-22T09:47:14.008467Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "304" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:14 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4e1c9b31-52f4-4fcb-a960-71916d86adbd - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/31072968-e2ca-4f17-8f27-dc752cbcf564 - method: DELETE - response: - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:15 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b4688051-63e1-47f6-90b3-31fda3224041 - status: 204 No Content - code: 204 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 - method: DELETE - response: - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:47:15 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4e54b469-c3fb-49e2-976c-5650963d5914 - status: 204 No Content - code: 204 - duration: "" diff --git a/scaleway/testdata/lb-private-network-dhcp.cassette.yaml b/scaleway/testdata/lb-private-network-dhcp.cassette.yaml deleted file mode 100644 index dec8e9d043..0000000000 --- a/scaleway/testdata/lb-private-network-dhcp.cassette.yaml +++ /dev/null @@ -1,1490 +0,0 @@ ---- -version: 1 -interactions: -- request: - body: '{"name":"test-lb-pn-with-dhcp","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks - method: POST - response: - body: '{"id":"0e90ee3d-4880-4f78-a287-4f7a3357663f","name":"test-lb-pn-with-dhcp","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:46:41.229596Z","updated_at":"2021-10-22T09:46:41.229596Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:41 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6490aa82-eaa2-4180-ba42-01b805f537ba - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/0e90ee3d-4880-4f78-a287-4f7a3357663f - method: GET - response: - body: '{"id":"0e90ee3d-4880-4f78-a287-4f7a3357663f","name":"test-lb-pn-with-dhcp","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:46:41.229596Z","updated_at":"2021-10-22T09:46:41.229596Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:41 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 806125e2-c16a-4287-87ea-3092a96b1689 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/0e90ee3d-4880-4f78-a287-4f7a3357663f - method: GET - response: - body: '{"id":"0e90ee3d-4880-4f78-a287-4f7a3357663f","name":"test-lb-pn-with-dhcp","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:46:41.229596Z","updated_at":"2021-10-22T09:46:41.229596Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:41 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b9c9a25a-d617-4dea-bf69-4d6bed38d77e - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/0e90ee3d-4880-4f78-a287-4f7a3357663f - method: GET - response: - body: '{"id":"0e90ee3d-4880-4f78-a287-4f7a3357663f","name":"test-lb-pn-with-dhcp","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:46:41.229596Z","updated_at":"2021-10-22T09:46:41.229596Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:42 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8ff34332-50b0-4aa8-9413-53bd3d9e45a8 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","reverse":null}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips - method: POST - response: - body: '{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "278" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:42 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b32603e0-aff2-47bf-a870-c55e28a31588 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb8e3551-c3e0-4bbe-9545-edd8348f1943 - method: GET - response: - body: '{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "278" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:42 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 946fc3f0-add0-457d-8033-4cbeeff32d99 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","name":"test-lb-with-dhcp","description":"","ip_id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs - method: POST - response: - body: '{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998049577Z","updated_at":"2021-10-22T09:46:42.998049577Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "866" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:43 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e14c48b1-ea30-4322-9bb5-62b530b74dab - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db - method: GET - response: - body: '{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"pending","instances":[{"id":"18752d74-6e96-438f-ac95-bbb056a647bf","status":"unknown","ip_address":"10.70.56.3","created_at":"2021-10-22T09:42:57.234844Z","updated_at":"2021-10-22T09:46:43.146699Z","region":"fr-par","zone":"fr-par-1"},{"id":"9f52b1cd-4fa8-4851-9c64-5289c1952a99","status":"unknown","ip_address":"10.64.78.113","created_at":"2021-10-22T09:40:49.668110Z","updated_at":"2021-10-22T09:46:43.149882Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:42.998050Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1287" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:43 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0d97cc3f-600b-4418-b028-15346583d3f4 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db - method: GET - response: - body: '{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[{"id":"18752d74-6e96-438f-ac95-bbb056a647bf","status":"ready","ip_address":"10.70.56.3","created_at":"2021-10-22T09:42:57.234844Z","updated_at":"2021-10-22T09:46:43.431958Z","region":"fr-par","zone":"fr-par-1"},{"id":"9f52b1cd-4fa8-4851-9c64-5289c1952a99","status":"ready","ip_address":"10.64.78.113","created_at":"2021-10-22T09:40:49.668110Z","updated_at":"2021-10-22T09:46:43.648441Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1281" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:45 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 93577566-5578-4829-a0ac-066c7cd99cb5 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db - method: GET - response: - body: '{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[{"id":"18752d74-6e96-438f-ac95-bbb056a647bf","status":"ready","ip_address":"10.70.56.3","created_at":"2021-10-22T09:42:57.234844Z","updated_at":"2021-10-22T09:46:43.431958Z","region":"fr-par","zone":"fr-par-1"},{"id":"9f52b1cd-4fa8-4851-9c64-5289c1952a99","status":"ready","ip_address":"10.64.78.113","created_at":"2021-10-22T09:40:49.668110Z","updated_at":"2021-10-22T09:46:43.648441Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1281" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:45 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 693030b9-07df-484b-9640-406dfb4ddc2b - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb8e3551-c3e0-4bbe-9545-edd8348f1943 - method: GET - response: - body: '{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "312" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:45 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b8a26b84-e13d-43a1-9f57-267340f4e14d - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/0e90ee3d-4880-4f78-a287-4f7a3357663f - method: GET - response: - body: '{"id":"0e90ee3d-4880-4f78-a287-4f7a3357663f","name":"test-lb-pn-with-dhcp","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:46:41.229596Z","updated_at":"2021-10-22T09:46:41.229596Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:45 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - efa258de-b79c-4d80-8191-0470dc9b2699 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db - method: GET - response: - body: '{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[{"id":"18752d74-6e96-438f-ac95-bbb056a647bf","status":"ready","ip_address":"10.70.56.3","created_at":"2021-10-22T09:42:57.234844Z","updated_at":"2021-10-22T09:46:43.431958Z","region":"fr-par","zone":"fr-par-1"},{"id":"9f52b1cd-4fa8-4851-9c64-5289c1952a99","status":"ready","ip_address":"10.64.78.113","created_at":"2021-10-22T09:40:49.668110Z","updated_at":"2021-10-22T09:46:43.648441Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1281" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:45 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4565cdc1-e5e0-43ac-b4f1-1c47dbaf6464 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb8e3551-c3e0-4bbe-9545-edd8348f1943 - method: GET - response: - body: '{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "312" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:46 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c8364385-a332-4b84-9ca5-7c0ce6665f10 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/0e90ee3d-4880-4f78-a287-4f7a3357663f - method: GET - response: - body: '{"id":"0e90ee3d-4880-4f78-a287-4f7a3357663f","name":"test-lb-pn-with-dhcp","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:46:41.229596Z","updated_at":"2021-10-22T09:46:41.229596Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:46 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2382ee29-3f8e-4ce1-8b9c-379a940b2ab0 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db - method: GET - response: - body: '{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[{"id":"18752d74-6e96-438f-ac95-bbb056a647bf","status":"ready","ip_address":"10.70.56.3","created_at":"2021-10-22T09:42:57.234844Z","updated_at":"2021-10-22T09:46:43.431958Z","region":"fr-par","zone":"fr-par-1"},{"id":"9f52b1cd-4fa8-4851-9c64-5289c1952a99","status":"ready","ip_address":"10.64.78.113","created_at":"2021-10-22T09:40:49.668110Z","updated_at":"2021-10-22T09:46:43.648441Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1281" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:46 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 578b7f09-34ae-44d0-88bf-3b0beed52b22 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db - method: GET - response: - body: '{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[{"id":"18752d74-6e96-438f-ac95-bbb056a647bf","status":"ready","ip_address":"10.70.56.3","created_at":"2021-10-22T09:42:57.234844Z","updated_at":"2021-10-22T09:46:43.431958Z","region":"fr-par","zone":"fr-par-1"},{"id":"9f52b1cd-4fa8-4851-9c64-5289c1952a99","status":"ready","ip_address":"10.64.78.113","created_at":"2021-10-22T09:40:49.668110Z","updated_at":"2021-10-22T09:46:43.648441Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1281" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:46 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1271768c-0fb5-4b0e-b1f6-66771cd537c8 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db - method: GET - response: - body: '{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[{"id":"18752d74-6e96-438f-ac95-bbb056a647bf","status":"ready","ip_address":"10.70.56.3","created_at":"2021-10-22T09:42:57.234844Z","updated_at":"2021-10-22T09:46:43.431958Z","region":"fr-par","zone":"fr-par-1"},{"id":"9f52b1cd-4fa8-4851-9c64-5289c1952a99","status":"ready","ip_address":"10.64.78.113","created_at":"2021-10-22T09:40:49.668110Z","updated_at":"2021-10-22T09:46:43.648441Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1281" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:47 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6a93f127-a990-4c0e-a2ad-f056d8ba2146 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"dhcp_config":{}}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db/private-networks/0e90ee3d-4880-4f78-a287-4f7a3357663f/attach - method: POST - response: - body: '{"lb":{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[{"id":"18752d74-6e96-438f-ac95-bbb056a647bf","status":"ready","ip_address":"10.70.56.3","created_at":"2021-10-22T09:42:57.234844Z","updated_at":"2021-10-22T09:46:43.431958Z","region":"fr-par","zone":"fr-par-1"},{"id":"9f52b1cd-4fa8-4851-9c64-5289c1952a99","status":"ready","ip_address":"10.64.78.113","created_at":"2021-10-22T09:40:49.668110Z","updated_at":"2021-10-22T09:46:43.648441Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"0e90ee3d-4880-4f78-a287-4f7a3357663f","status":"pending","created_at":"2021-10-22T09:46:47.255487938Z","updated_at":"2021-10-22T09:46:47.255487938Z","dhcp_config":{}}' - headers: - Content-Length: - - "1476" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:47 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0920c1ae-5d6a-4f66-a8d4-efa1009b77aa - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db - method: GET - response: - body: '{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[{"id":"18752d74-6e96-438f-ac95-bbb056a647bf","status":"ready","ip_address":"10.70.56.3","created_at":"2021-10-22T09:42:57.234844Z","updated_at":"2021-10-22T09:46:43.431958Z","region":"fr-par","zone":"fr-par-1"},{"id":"9f52b1cd-4fa8-4851-9c64-5289c1952a99","status":"ready","ip_address":"10.64.78.113","created_at":"2021-10-22T09:40:49.668110Z","updated_at":"2021-10-22T09:46:43.648441Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1281" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:47 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 473325f8-b810-4d63-8de5-bb139815c80e - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db/private-networks?order_by=created_at_asc - method: GET - response: - body: '{"private_network":[{"lb":{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"0e90ee3d-4880-4f78-a287-4f7a3357663f","status":"pending","created_at":"2021-10-22T09:46:47.255488Z","updated_at":"2021-10-22T09:46:47.255488Z","dhcp_config":{}}],"total_count":1}' - headers: - Content-Length: - - "1085" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:47 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 524278ee-f284-4535-b267-3b9c1b2e8f83 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db/private-networks?order_by=created_at_asc - method: GET - response: - body: '{"private_network":[{"lb":{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"0e90ee3d-4880-4f78-a287-4f7a3357663f","status":"pending","created_at":"2021-10-22T09:46:47.255488Z","updated_at":"2021-10-22T09:46:47.255488Z","dhcp_config":{}}],"total_count":1}' - headers: - Content-Length: - - "1085" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:47 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 72eeec57-66b8-42d2-9189-bab3b575855a - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/0e90ee3d-4880-4f78-a287-4f7a3357663f - method: GET - response: - body: '{"id":"0e90ee3d-4880-4f78-a287-4f7a3357663f","name":"test-lb-pn-with-dhcp","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:46:41.229596Z","updated_at":"2021-10-22T09:46:41.229596Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:48 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4ff0f0fc-c1b1-4892-b057-96e9fdd6cf05 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb8e3551-c3e0-4bbe-9545-edd8348f1943 - method: GET - response: - body: '{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "312" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:48 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 140da8af-c6ce-4003-bbe6-9a44d2e95112 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db - method: GET - response: - body: '{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[{"id":"18752d74-6e96-438f-ac95-bbb056a647bf","status":"ready","ip_address":"10.70.56.3","created_at":"2021-10-22T09:42:57.234844Z","updated_at":"2021-10-22T09:46:43.431958Z","region":"fr-par","zone":"fr-par-1"},{"id":"9f52b1cd-4fa8-4851-9c64-5289c1952a99","status":"ready","ip_address":"10.64.78.113","created_at":"2021-10-22T09:40:49.668110Z","updated_at":"2021-10-22T09:46:43.648441Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1281" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:48 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d095422-f03c-4906-a505-ba945362a51f - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db/private-networks?order_by=created_at_asc - method: GET - response: - body: '{"private_network":[{"lb":{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"0e90ee3d-4880-4f78-a287-4f7a3357663f","status":"pending","created_at":"2021-10-22T09:46:47.255488Z","updated_at":"2021-10-22T09:46:47.255488Z","dhcp_config":{}}],"total_count":1}' - headers: - Content-Length: - - "1085" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:48 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3e11c2e5-4eca-45e9-a891-d5bddc3e80e4 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/0e90ee3d-4880-4f78-a287-4f7a3357663f - method: GET - response: - body: '{"id":"0e90ee3d-4880-4f78-a287-4f7a3357663f","name":"test-lb-pn-with-dhcp","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:46:41.229596Z","updated_at":"2021-10-22T09:46:41.229596Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:49 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 06f4743d-7d59-4a1f-8288-426904dc129c - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb8e3551-c3e0-4bbe-9545-edd8348f1943 - method: GET - response: - body: '{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "312" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:49 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - de69d147-046c-43f1-9531-b59dddd4ce80 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db/private-networks?order_by=created_at_asc - method: GET - response: - body: '{"private_network":[{"lb":{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"0e90ee3d-4880-4f78-a287-4f7a3357663f","status":"pending","created_at":"2021-10-22T09:46:47.255488Z","updated_at":"2021-10-22T09:46:47.255488Z","dhcp_config":{}}],"total_count":1}' - headers: - Content-Length: - - "1085" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:49 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - efd4dba9-291c-42b9-8950-65ec3f833cc7 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db - method: GET - response: - body: '{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[{"id":"18752d74-6e96-438f-ac95-bbb056a647bf","status":"ready","ip_address":"10.70.56.3","created_at":"2021-10-22T09:42:57.234844Z","updated_at":"2021-10-22T09:46:43.431958Z","region":"fr-par","zone":"fr-par-1"},{"id":"9f52b1cd-4fa8-4851-9c64-5289c1952a99","status":"ready","ip_address":"10.64.78.113","created_at":"2021-10-22T09:40:49.668110Z","updated_at":"2021-10-22T09:46:43.648441Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1281" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:49 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f8b02aaa-7a2a-47ab-af26-0218a5cde9f8 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db/private-networks/0e90ee3d-4880-4f78-a287-4f7a3357663f/detach - method: POST - response: - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:49 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6935e827-2cb9-4253-9f16-e7a6a283e453 - status: 204 No Content - code: 204 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db - method: GET - response: - body: '{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[{"id":"18752d74-6e96-438f-ac95-bbb056a647bf","status":"ready","ip_address":"10.70.56.3","created_at":"2021-10-22T09:42:57.234844Z","updated_at":"2021-10-22T09:46:43.431958Z","region":"fr-par","zone":"fr-par-1"},{"id":"9f52b1cd-4fa8-4851-9c64-5289c1952a99","status":"ready","ip_address":"10.64.78.113","created_at":"2021-10-22T09:40:49.668110Z","updated_at":"2021-10-22T09:46:43.648441Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1281" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:49 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9ccc8286-be7a-4f87-b13b-e449791efb49 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db - method: GET - response: - body: '{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[{"id":"18752d74-6e96-438f-ac95-bbb056a647bf","status":"ready","ip_address":"10.70.56.3","created_at":"2021-10-22T09:42:57.234844Z","updated_at":"2021-10-22T09:46:43.431958Z","region":"fr-par","zone":"fr-par-1"},{"id":"9f52b1cd-4fa8-4851-9c64-5289c1952a99","status":"ready","ip_address":"10.64.78.113","created_at":"2021-10-22T09:40:49.668110Z","updated_at":"2021-10-22T09:46:43.648441Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1281" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:49 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d9cd0bb7-75ab-4d92-8da0-71116a888e07 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/0e90ee3d-4880-4f78-a287-4f7a3357663f - method: GET - response: - body: '{"id":"0e90ee3d-4880-4f78-a287-4f7a3357663f","name":"test-lb-pn-with-dhcp","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:46:41.229596Z","updated_at":"2021-10-22T09:46:41.229596Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:50 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e1fb02fd-9625-4238-bd19-97d597591a55 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb8e3551-c3e0-4bbe-9545-edd8348f1943 - method: GET - response: - body: '{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "312" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:50 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 26b50108-f864-49f1-8c9a-d4518a5851ef - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db - method: GET - response: - body: '{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[{"id":"18752d74-6e96-438f-ac95-bbb056a647bf","status":"ready","ip_address":"10.70.56.3","created_at":"2021-10-22T09:42:57.234844Z","updated_at":"2021-10-22T09:46:43.431958Z","region":"fr-par","zone":"fr-par-1"},{"id":"9f52b1cd-4fa8-4851-9c64-5289c1952a99","status":"ready","ip_address":"10.64.78.113","created_at":"2021-10-22T09:40:49.668110Z","updated_at":"2021-10-22T09:46:43.648441Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1281" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:50 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 211923b8-8f68-4a48-8c40-87553b4f3a40 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb8e3551-c3e0-4bbe-9545-edd8348f1943 - method: GET - response: - body: '{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "312" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:51 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 338b0fed-233e-4c1b-b59a-cad607946de9 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/0e90ee3d-4880-4f78-a287-4f7a3357663f - method: GET - response: - body: '{"id":"0e90ee3d-4880-4f78-a287-4f7a3357663f","name":"test-lb-pn-with-dhcp","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:46:41.229596Z","updated_at":"2021-10-22T09:46:41.229596Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:51 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 06335925-512e-4ecf-9d15-1e8b7c810ce7 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db - method: GET - response: - body: '{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[{"id":"18752d74-6e96-438f-ac95-bbb056a647bf","status":"ready","ip_address":"10.70.56.3","created_at":"2021-10-22T09:42:57.234844Z","updated_at":"2021-10-22T09:46:43.431958Z","region":"fr-par","zone":"fr-par-1"},{"id":"9f52b1cd-4fa8-4851-9c64-5289c1952a99","status":"ready","ip_address":"10.64.78.113","created_at":"2021-10-22T09:40:49.668110Z","updated_at":"2021-10-22T09:46:43.648441Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1281" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:51 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9b21d41e-87f8-4b0b-9272-507e41bcfce1 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db - method: GET - response: - body: '{"id":"c5adce06-b466-412d-a3be-8664b5fae2db","name":"test-lb-with-dhcp","description":"","status":"ready","instances":[{"id":"18752d74-6e96-438f-ac95-bbb056a647bf","status":"ready","ip_address":"10.70.56.3","created_at":"2021-10-22T09:42:57.234844Z","updated_at":"2021-10-22T09:46:43.431958Z","region":"fr-par","zone":"fr-par-1"},{"id":"9f52b1cd-4fa8-4851-9c64-5289c1952a99","status":"ready","ip_address":"10.64.78.113","created_at":"2021-10-22T09:40:49.668110Z","updated_at":"2021-10-22T09:46:43.648441Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"c5adce06-b466-412d-a3be-8664b5fae2db","reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:46:42.998050Z","updated_at":"2021-10-22T09:46:43.907706Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "1281" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:51 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f3cab650-bc3e-47d2-9439-83d867be17fb - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c5adce06-b466-412d-a3be-8664b5fae2db?release_ip=false - method: DELETE - response: - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:51 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4d21acbb-dc26-481c-aab0-246177f86598 - status: 204 No Content - code: 204 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/0e90ee3d-4880-4f78-a287-4f7a3357663f - method: GET - response: - body: '{"id":"0e90ee3d-4880-4f78-a287-4f7a3357663f","name":"test-lb-pn-with-dhcp","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-10-22T09:46:41.229596Z","updated_at":"2021-10-22T09:46:41.229596Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' - headers: - Content-Length: - - "298" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:52 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 85057ed6-7042-4351-a6ee-e35b46b9638b - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb8e3551-c3e0-4bbe-9545-edd8348f1943 - method: GET - response: - body: '{"id":"cb8e3551-c3e0-4bbe-9545-edd8348f1943","ip_address":"51.159.10.254","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-10-254.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' - headers: - Content-Length: - - "278" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:52 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6a26e77f-a769-4bce-be94-4a548220cce9 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/0e90ee3d-4880-4f78-a287-4f7a3357663f - method: DELETE - response: - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:53 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 20dc028a-a457-4ad3-9471-47f6cfa96991 - status: 204 No Content - code: 204 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb8e3551-c3e0-4bbe-9545-edd8348f1943 - method: DELETE - response: - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 22 Oct 2021 09:46:53 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0028f40a-f0d1-4469-ae8e-95e6d96214c6 - status: 204 No Content - code: 204 - duration: "" diff --git a/scaleway/testdata/lb-route-basic.cassette.yaml b/scaleway/testdata/lb-route-basic.cassette.yaml index 9a1cd26572..6504fe539d 100644 --- a/scaleway/testdata/lb-route-basic.cassette.yaml +++ b/scaleway/testdata/lb-route-basic.cassette.yaml @@ -13,7 +13,7 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "280" @@ -22,7 +22,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:34 GMT + - Thu, 04 Nov 2021 13:10:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d281a35-eb73-4585-a14b-78dfd0a86898 + - 09aee3c7-8149-4e9c-be19-8ba4b58c22bc status: 200 OK code: 200 duration: "" @@ -43,10 +43,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b16e4dad-e4f4-4081-a774-add8840a940e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "280" @@ -55,7 +55,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:34 GMT + - Thu, 04 Nov 2021 13:10:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ebbc004-63df-4af1-823c-843fa5f0b72b + - f01667c3-370a-4a19-9f68-a952b3a06f0f status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","name":"test-lb","description":"","ip_id":"b16e4dad-e4f4-4081-a774-add8840a940e","tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' + body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","name":"test-lb","description":"","ip_id":"a7972715-724c-448c-85b2-640ffc655a09","tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' form: {} headers: Content-Type: @@ -81,7 +81,7 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"id":"f0e7c1db-4089-4253-a298-afaae373eb20","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:48:34.263338979Z","updated_at":"2021-10-22T09:48:34.263338979Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545079913Z","updated_at":"2021-11-04T13:10:08.545079913Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "858" @@ -90,7 +90,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:34 GMT + - Thu, 04 Nov 2021 13:10:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 323e6d08-e204-4eb8-9b0c-85d1eb47b3a0 + - 621c6090-f383-4640-9038-1cc4313d5370 status: 200 OK code: 200 duration: "" @@ -111,19 +111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f0e7c1db-4089-4253-a298-afaae373eb20 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/759492f8-1280-400e-b92c-edbfcc32364e method: GET response: - body: '{"id":"f0e7c1db-4089-4253-a298-afaae373eb20","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:48:34.263339Z","updated_at":"2021-10-22T09:48:34.263339Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"pending","instances":[{"id":"e23e6253-90aa-4a83-87f8-645093d99ef1","status":"unknown","ip_address":"10.69.124.85","created_at":"2021-11-04T13:00:57.532130Z","updated_at":"2021-11-04T13:10:08.745990Z","region":"fr-par","zone":"fr-par-1"},{"id":"7ceb1f4a-a040-42fb-801c-cebcbe8ff21b","status":"unknown","ip_address":"10.71.86.67","created_at":"2021-11-04T13:08:27.461625Z","updated_at":"2021-11-04T13:10:08.751556Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545080Z","updated_at":"2021-11-04T13:10:08.765543Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "852" + - "1280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:34 GMT + - Thu, 04 Nov 2021 13:10:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a81c52e1-b267-4b6b-a5b3-30190be9e507 + - dbd74ec6-da52-4ebc-bb69-c574a668747c status: 200 OK code: 200 duration: "" @@ -144,10 +144,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f0e7c1db-4089-4253-a298-afaae373eb20 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/759492f8-1280-400e-b92c-edbfcc32364e method: GET response: - body: '{"id":"f0e7c1db-4089-4253-a298-afaae373eb20","name":"test-lb","description":"","status":"ready","instances":[{"id":"82bd9fb9-f0b1-4b4d-bd4f-5ca0513d2118","status":"ready","ip_address":"10.70.60.107","created_at":"2021-10-22T09:47:05.817837Z","updated_at":"2021-10-22T09:48:34.733793Z","region":"fr-par","zone":"fr-par-1"},{"id":"0b857ae9-481d-41e6-b43c-4234f6090622","status":"ready","ip_address":"10.70.86.13","created_at":"2021-10-22T09:46:40.195396Z","updated_at":"2021-10-22T09:48:34.981990Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:48:34.263339Z","updated_at":"2021-10-22T09:48:35.270491Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"ready","instances":[{"id":"e23e6253-90aa-4a83-87f8-645093d99ef1","status":"ready","ip_address":"10.69.124.85","created_at":"2021-11-04T13:00:57.532130Z","updated_at":"2021-11-04T13:10:09.347109Z","region":"fr-par","zone":"fr-par-1"},{"id":"7ceb1f4a-a040-42fb-801c-cebcbe8ff21b","status":"ready","ip_address":"10.71.86.67","created_at":"2021-11-04T13:08:27.461625Z","updated_at":"2021-11-04T13:10:09.557187Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545080Z","updated_at":"2021-11-04T13:10:09.888163Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1274" @@ -156,7 +156,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:36 GMT + - Thu, 04 Nov 2021 13:10:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6228976-7150-4d9e-983f-e688a255f696 + - 0da44f40-d731-486f-9738-4bb81da88c9f status: 200 OK code: 200 duration: "" @@ -177,10 +177,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f0e7c1db-4089-4253-a298-afaae373eb20 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/759492f8-1280-400e-b92c-edbfcc32364e method: GET response: - body: '{"id":"f0e7c1db-4089-4253-a298-afaae373eb20","name":"test-lb","description":"","status":"ready","instances":[{"id":"82bd9fb9-f0b1-4b4d-bd4f-5ca0513d2118","status":"ready","ip_address":"10.70.60.107","created_at":"2021-10-22T09:47:05.817837Z","updated_at":"2021-10-22T09:48:34.733793Z","region":"fr-par","zone":"fr-par-1"},{"id":"0b857ae9-481d-41e6-b43c-4234f6090622","status":"ready","ip_address":"10.70.86.13","created_at":"2021-10-22T09:46:40.195396Z","updated_at":"2021-10-22T09:48:34.981990Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:48:34.263339Z","updated_at":"2021-10-22T09:48:35.270491Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"ready","instances":[{"id":"e23e6253-90aa-4a83-87f8-645093d99ef1","status":"ready","ip_address":"10.69.124.85","created_at":"2021-11-04T13:00:57.532130Z","updated_at":"2021-11-04T13:10:09.347109Z","region":"fr-par","zone":"fr-par-1"},{"id":"7ceb1f4a-a040-42fb-801c-cebcbe8ff21b","status":"ready","ip_address":"10.71.86.67","created_at":"2021-11-04T13:08:27.461625Z","updated_at":"2021-11-04T13:10:09.557187Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545080Z","updated_at":"2021-11-04T13:10:09.888163Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1274" @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:36 GMT + - Thu, 04 Nov 2021 13:10:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b28ea6b0-43c6-4f67-a66f-b6f3472234ce + - ddf08d46-4141-43aa-8bdc-1d88c9e1d251 status: 200 OK code: 200 duration: "" @@ -210,10 +210,43 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f0e7c1db-4089-4253-a298-afaae373eb20 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/759492f8-1280-400e-b92c-edbfcc32364e/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"f0e7c1db-4089-4253-a298-afaae373eb20","name":"test-lb","description":"","status":"ready","instances":[{"id":"82bd9fb9-f0b1-4b4d-bd4f-5ca0513d2118","status":"ready","ip_address":"10.70.60.107","created_at":"2021-10-22T09:47:05.817837Z","updated_at":"2021-10-22T09:48:34.733793Z","region":"fr-par","zone":"fr-par-1"},{"id":"0b857ae9-481d-41e6-b43c-4234f6090622","status":"ready","ip_address":"10.70.86.13","created_at":"2021-10-22T09:46:40.195396Z","updated_at":"2021-10-22T09:48:34.981990Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:48:34.263339Z","updated_at":"2021-10-22T09:48:35.270491Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:10:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bc3f670e-9859-4793-8999-096b86fea576 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/759492f8-1280-400e-b92c-edbfcc32364e + method: GET + response: + body: '{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"ready","instances":[{"id":"e23e6253-90aa-4a83-87f8-645093d99ef1","status":"ready","ip_address":"10.69.124.85","created_at":"2021-11-04T13:00:57.532130Z","updated_at":"2021-11-04T13:10:09.347109Z","region":"fr-par","zone":"fr-par-1"},{"id":"7ceb1f4a-a040-42fb-801c-cebcbe8ff21b","status":"ready","ip_address":"10.71.86.67","created_at":"2021-11-04T13:08:27.461625Z","updated_at":"2021-11-04T13:10:09.557187Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545080Z","updated_at":"2021-11-04T13:10:09.888163Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1274" @@ -222,7 +255,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:36 GMT + - Thu, 04 Nov 2021 13:10:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,12 +265,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf2adf5c-4efe-4300-9107-3c3642358b50 + - e19d1b10-b8c4-4209-b130-e8028779f1b3 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-bkd-tender-babbage","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"check_max_retries":2,"port":80,"check_send_proxy":false,"check_timeout":30000,"check_delay":60000},"server_ip":[],"send_proxy_v2":false,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","timeout_server":null,"timeout_connect":null,"timeout_tunnel":null}' + body: '{"name":"tf-lb-bkd-eager-thompson","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"check_max_retries":2,"port":80,"check_send_proxy":false,"check_timeout":30000,"check_delay":60000},"server_ip":[],"send_proxy_v2":false,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","timeout_server":null,"timeout_connect":null,"timeout_tunnel":null}' form: {} headers: Content-Type: @@ -245,10 +278,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f0e7c1db-4089-4253-a298-afaae373eb20/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/759492f8-1280-400e-b92c-edbfcc32364e/backends method: POST response: - body: '{"id":"c416f0f0-4e19-4e5e-b918-6a35ebc59583","name":"tf-lb-bkd-tender-babbage","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"f0e7c1db-4089-4253-a298-afaae373eb20","name":"test-lb","description":"","status":"ready","instances":[{"id":"82bd9fb9-f0b1-4b4d-bd4f-5ca0513d2118","status":"pending","ip_address":"10.70.60.107","created_at":"2021-10-22T09:47:05.817837Z","updated_at":"2021-10-22T09:48:36.863634154Z","region":"fr-par","zone":"fr-par-1"},{"id":"0b857ae9-481d-41e6-b43c-4234f6090622","status":"pending","ip_address":"10.70.86.13","created_at":"2021-10-22T09:46:40.195396Z","updated_at":"2021-10-22T09:48:36.921430697Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:48:34.263339Z","updated_at":"2021-10-22T09:48:35.270491Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-22T09:48:36.835684522Z","updated_at":"2021-10-22T09:48:36.835684522Z"}' + body: '{"id":"d7b9e22f-c3e8-4e78-91c2-2a6b3de02d96","name":"tf-lb-bkd-eager-thompson","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"ready","instances":[{"id":"e23e6253-90aa-4a83-87f8-645093d99ef1","status":"pending","ip_address":"10.69.124.85","created_at":"2021-11-04T13:00:57.532130Z","updated_at":"2021-11-04T13:10:39.425275148Z","region":"fr-par","zone":"fr-par-1"},{"id":"7ceb1f4a-a040-42fb-801c-cebcbe8ff21b","status":"pending","ip_address":"10.71.86.67","created_at":"2021-11-04T13:08:27.461625Z","updated_at":"2021-11-04T13:10:39.512534826Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545080Z","updated_at":"2021-11-04T13:10:09.888163Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:10:39.389219839Z","updated_at":"2021-11-04T13:10:39.389219839Z"}' headers: Content-Length: - "1923" @@ -257,7 +290,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:37 GMT + - Thu, 04 Nov 2021 13:10:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -267,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a20dc010-71d6-4538-9809-a7a3c3ccf1ca + - b07751ba-0964-4251-a1fa-d5b63f768fcc status: 200 OK code: 200 duration: "" @@ -278,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c416f0f0-4e19-4e5e-b918-6a35ebc59583 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d7b9e22f-c3e8-4e78-91c2-2a6b3de02d96 method: GET response: - body: '{"id":"c416f0f0-4e19-4e5e-b918-6a35ebc59583","name":"tf-lb-bkd-tender-babbage","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"f0e7c1db-4089-4253-a298-afaae373eb20","name":"test-lb","description":"","status":"ready","instances":[{"id":"0b857ae9-481d-41e6-b43c-4234f6090622","status":"ready","ip_address":"10.70.86.13","created_at":"2021-10-22T09:46:40.195396Z","updated_at":"2021-10-22T09:48:37.126012Z","region":"fr-par","zone":"fr-par-1"},{"id":"82bd9fb9-f0b1-4b4d-bd4f-5ca0513d2118","status":"ready","ip_address":"10.70.60.107","created_at":"2021-10-22T09:47:05.817837Z","updated_at":"2021-10-22T09:48:37.181077Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:48:34.263339Z","updated_at":"2021-10-22T09:48:35.270491Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-22T09:48:36.835685Z","updated_at":"2021-10-22T09:48:36.835685Z"}' + body: '{"id":"d7b9e22f-c3e8-4e78-91c2-2a6b3de02d96","name":"tf-lb-bkd-eager-thompson","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"ready","instances":[{"id":"7ceb1f4a-a040-42fb-801c-cebcbe8ff21b","status":"pending","ip_address":"10.71.86.67","created_at":"2021-11-04T13:08:27.461625Z","updated_at":"2021-11-04T13:10:39.512535Z","region":"fr-par","zone":"fr-par-1"},{"id":"e23e6253-90aa-4a83-87f8-645093d99ef1","status":"ready","ip_address":"10.69.124.85","created_at":"2021-11-04T13:00:57.532130Z","updated_at":"2021-11-04T13:10:39.714996Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545080Z","updated_at":"2021-11-04T13:10:09.888163Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:10:39.389220Z","updated_at":"2021-11-04T13:10:39.389220Z"}' headers: Content-Length: - - "1907" + - "1909" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:37 GMT + - Thu, 04 Nov 2021 13:10:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4616b817-4deb-40af-acb9-f4c20d097be8 + - e5d6a63e-c5c3-439f-b757-6ea061b083e5 status: 200 OK code: 200 duration: "" @@ -311,10 +344,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f0e7c1db-4089-4253-a298-afaae373eb20 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/759492f8-1280-400e-b92c-edbfcc32364e method: GET response: - body: '{"id":"f0e7c1db-4089-4253-a298-afaae373eb20","name":"test-lb","description":"","status":"ready","instances":[{"id":"82bd9fb9-f0b1-4b4d-bd4f-5ca0513d2118","status":"ready","ip_address":"10.70.60.107","created_at":"2021-10-22T09:47:05.817837Z","updated_at":"2021-10-22T09:48:37.181077Z","region":"fr-par","zone":"fr-par-1"},{"id":"0b857ae9-481d-41e6-b43c-4234f6090622","status":"ready","ip_address":"10.70.86.13","created_at":"2021-10-22T09:46:40.195396Z","updated_at":"2021-10-22T09:48:37.126012Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:48:34.263339Z","updated_at":"2021-10-22T09:48:35.270491Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"ready","instances":[{"id":"e23e6253-90aa-4a83-87f8-645093d99ef1","status":"ready","ip_address":"10.69.124.85","created_at":"2021-11-04T13:00:57.532130Z","updated_at":"2021-11-04T13:10:39.714996Z","region":"fr-par","zone":"fr-par-1"},{"id":"7ceb1f4a-a040-42fb-801c-cebcbe8ff21b","status":"ready","ip_address":"10.71.86.67","created_at":"2021-11-04T13:08:27.461625Z","updated_at":"2021-11-04T13:10:39.770616Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545080Z","updated_at":"2021-11-04T13:10:09.888163Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1274" @@ -323,7 +356,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:37 GMT + - Thu, 04 Nov 2021 13:10:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,12 +366,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe19a4f1-ea3a-4011-bbb3-8916e818f02e + - 936ad24f-098c-4a5d-9133-75ff2cd7423b status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-kind-hertz","inbound_port":80,"backend_id":"c416f0f0-4e19-4e5e-b918-6a35ebc59583","certificate_id":null,"certificate_ids":null,"timeout_client":null}' + body: '{"name":"tf-lb-frt-great-chebyshev","inbound_port":80,"backend_id":"d7b9e22f-c3e8-4e78-91c2-2a6b3de02d96","certificate_id":null,"certificate_ids":null,"timeout_client":null}' form: {} headers: Content-Type: @@ -346,19 +379,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f0e7c1db-4089-4253-a298-afaae373eb20/frontends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/759492f8-1280-400e-b92c-edbfcc32364e/frontends method: POST response: - body: '{"id":"c9172b50-f94c-4e56-8e63-7e65862a8e79","name":"tf-lb-frt-kind-hertz","inbound_port":80,"backend":{"id":"c416f0f0-4e19-4e5e-b918-6a35ebc59583","name":"tf-lb-bkd-tender-babbage","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"f0e7c1db-4089-4253-a298-afaae373eb20","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:48:34.263339Z","updated_at":"2021-10-22T09:48:35.270491Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-22T09:48:36.835685Z","updated_at":"2021-10-22T09:48:36.835685Z"},"lb":{"id":"f0e7c1db-4089-4253-a298-afaae373eb20","name":"test-lb","description":"","status":"ready","instances":[{"id":"82bd9fb9-f0b1-4b4d-bd4f-5ca0513d2118","status":"pending","ip_address":"10.70.60.107","created_at":"2021-10-22T09:47:05.817837Z","updated_at":"2021-10-22T09:48:38.038510191Z","region":"fr-par","zone":"fr-par-1"},{"id":"0b857ae9-481d-41e6-b43c-4234f6090622","status":"pending","ip_address":"10.70.86.13","created_at":"2021-10-22T09:46:40.195396Z","updated_at":"2021-10-22T09:48:38.127930827Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:48:34.263339Z","updated_at":"2021-10-22T09:48:35.270491Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":null,"certificate":null,"certificate_ids":[],"created_at":"2021-10-22T09:48:37.973673Z","updated_at":"2021-10-22T09:48:37.973673Z"}' + body: '{"id":"b002e507-6aaf-42e2-81ed-23ba321a989b","name":"tf-lb-frt-great-chebyshev","inbound_port":80,"backend":{"id":"d7b9e22f-c3e8-4e78-91c2-2a6b3de02d96","name":"tf-lb-bkd-eager-thompson","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545080Z","updated_at":"2021-11-04T13:10:09.888163Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:10:39.389220Z","updated_at":"2021-11-04T13:10:39.389220Z"},"lb":{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"ready","instances":[{"id":"e23e6253-90aa-4a83-87f8-645093d99ef1","status":"pending","ip_address":"10.69.124.85","created_at":"2021-11-04T13:00:57.532130Z","updated_at":"2021-11-04T13:10:40.198636094Z","region":"fr-par","zone":"fr-par-1"},{"id":"7ceb1f4a-a040-42fb-801c-cebcbe8ff21b","status":"pending","ip_address":"10.71.86.67","created_at":"2021-11-04T13:08:27.461625Z","updated_at":"2021-11-04T13:10:40.288300348Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545080Z","updated_at":"2021-11-04T13:10:09.888163Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":null,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:10:40.113849Z","updated_at":"2021-11-04T13:10:40.113849Z"}' headers: Content-Length: - - "3025" + - "3030" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:38 GMT + - Thu, 04 Nov 2021 13:10:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -368,7 +401,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a3d95ed-87da-42ed-9212-c773d6239c81 + - 4a5adc46-8c94-482f-88b1-45875263c1a3 status: 200 OK code: 200 duration: "" @@ -379,7 +412,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/c9172b50-f94c-4e56-8e63-7e65862a8e79/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b002e507-6aaf-42e2-81ed-23ba321a989b/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' @@ -391,7 +424,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:38 GMT + - Thu, 04 Nov 2021 13:10:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -401,7 +434,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9016483-09b8-404f-8f7d-12e85e11b9e0 + - 8b24d5c9-5539-4469-a8f2-11396693e60c status: 200 OK code: 200 duration: "" @@ -412,19 +445,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/c9172b50-f94c-4e56-8e63-7e65862a8e79 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b002e507-6aaf-42e2-81ed-23ba321a989b method: GET response: - body: '{"id":"c9172b50-f94c-4e56-8e63-7e65862a8e79","name":"tf-lb-frt-kind-hertz","inbound_port":80,"backend":{"id":"c416f0f0-4e19-4e5e-b918-6a35ebc59583","name":"tf-lb-bkd-tender-babbage","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"f0e7c1db-4089-4253-a298-afaae373eb20","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:48:34.263339Z","updated_at":"2021-10-22T09:48:35.270491Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-22T09:48:36.835685Z","updated_at":"2021-10-22T09:48:36.835685Z"},"lb":{"id":"f0e7c1db-4089-4253-a298-afaae373eb20","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:48:34.263339Z","updated_at":"2021-10-22T09:48:35.270491Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":null,"certificate":null,"certificate_ids":[],"created_at":"2021-10-22T09:48:37.973673Z","updated_at":"2021-10-22T09:48:37.973673Z"}' + body: '{"id":"b002e507-6aaf-42e2-81ed-23ba321a989b","name":"tf-lb-frt-great-chebyshev","inbound_port":80,"backend":{"id":"d7b9e22f-c3e8-4e78-91c2-2a6b3de02d96","name":"tf-lb-bkd-eager-thompson","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545080Z","updated_at":"2021-11-04T13:10:09.888163Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:10:39.389220Z","updated_at":"2021-11-04T13:10:39.389220Z"},"lb":{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545080Z","updated_at":"2021-11-04T13:10:09.888163Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":null,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:10:40.113849Z","updated_at":"2021-11-04T13:10:40.113849Z"}' headers: Content-Length: - - "2591" + - "2596" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:38 GMT + - Thu, 04 Nov 2021 13:10:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -434,7 +467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5afe8ef-dc0e-4080-b373-889197e1caaf + - 865732f2-1ff4-44d2-942f-5e9edeca0e3f status: 200 OK code: 200 duration: "" @@ -445,7 +478,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/c9172b50-f94c-4e56-8e63-7e65862a8e79/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b002e507-6aaf-42e2-81ed-23ba321a989b/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' @@ -457,7 +490,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:38 GMT + - Thu, 04 Nov 2021 13:10:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,12 +500,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15b6a634-1f85-4049-a634-3dd7d212afa9 + - 8d2a6327-a78f-42ea-9918-b19e6d23aa33 status: 200 OK code: 200 duration: "" - request: - body: '{"frontend_id":"c9172b50-f94c-4e56-8e63-7e65862a8e79","backend_id":"c416f0f0-4e19-4e5e-b918-6a35ebc59583","match":{"sni":"scaleway.com"}}' + body: '{"frontend_id":"b002e507-6aaf-42e2-81ed-23ba321a989b","backend_id":"d7b9e22f-c3e8-4e78-91c2-2a6b3de02d96","match":{"sni":"scaleway.com"}}' form: {} headers: Content-Type: @@ -483,7 +516,7 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes method: POST response: - body: '{"id":"4560df91-6c3e-4c56-b529-5f054d322406","frontend_id":"c9172b50-f94c-4e56-8e63-7e65862a8e79","match":{"sni":"scaleway.com"},"backend_id":"c416f0f0-4e19-4e5e-b918-6a35ebc59583","created_at":"2021-10-22T09:48:38.959839277Z","updated_at":"2021-10-22T09:48:38.959839277Z"}' + body: '{"id":"72ea9094-a6c6-4087-85d8-4ce8a1a08757","frontend_id":"b002e507-6aaf-42e2-81ed-23ba321a989b","match":{"sni":"scaleway.com"},"backend_id":"d7b9e22f-c3e8-4e78-91c2-2a6b3de02d96","created_at":"2021-11-04T13:10:41.125336915Z","updated_at":"2021-11-04T13:10:41.125336915Z"}' headers: Content-Length: - "273" @@ -492,7 +525,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:39 GMT + - Thu, 04 Nov 2021 13:10:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -502,7 +535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b0bfa44-ea7e-4f9d-af41-606e9237843b + - bbe26666-1e39-4f0a-9f2b-9fc5349b24e5 status: 200 OK code: 200 duration: "" @@ -513,10 +546,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/4560df91-6c3e-4c56-b529-5f054d322406 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/72ea9094-a6c6-4087-85d8-4ce8a1a08757 method: GET response: - body: '{"id":"4560df91-6c3e-4c56-b529-5f054d322406","frontend_id":"c9172b50-f94c-4e56-8e63-7e65862a8e79","match":{"sni":"scaleway.com"},"backend_id":"c416f0f0-4e19-4e5e-b918-6a35ebc59583","created_at":"2021-10-22T09:48:38.959839Z","updated_at":"2021-10-22T09:48:38.959839Z"}' + body: '{"id":"72ea9094-a6c6-4087-85d8-4ce8a1a08757","frontend_id":"b002e507-6aaf-42e2-81ed-23ba321a989b","match":{"sni":"scaleway.com"},"backend_id":"d7b9e22f-c3e8-4e78-91c2-2a6b3de02d96","created_at":"2021-11-04T13:10:41.125337Z","updated_at":"2021-11-04T13:10:41.125337Z"}' headers: Content-Length: - "267" @@ -525,7 +558,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:39 GMT + - Thu, 04 Nov 2021 13:10:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -535,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17c20460-517d-4341-8a54-d1f30bafc948 + - 4f10c6a8-6b83-4582-9b7b-95815b0c4f16 status: 200 OK code: 200 duration: "" @@ -546,10 +579,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/4560df91-6c3e-4c56-b529-5f054d322406 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/72ea9094-a6c6-4087-85d8-4ce8a1a08757 method: GET response: - body: '{"id":"4560df91-6c3e-4c56-b529-5f054d322406","frontend_id":"c9172b50-f94c-4e56-8e63-7e65862a8e79","match":{"sni":"scaleway.com"},"backend_id":"c416f0f0-4e19-4e5e-b918-6a35ebc59583","created_at":"2021-10-22T09:48:38.959839Z","updated_at":"2021-10-22T09:48:38.959839Z"}' + body: '{"id":"72ea9094-a6c6-4087-85d8-4ce8a1a08757","frontend_id":"b002e507-6aaf-42e2-81ed-23ba321a989b","match":{"sni":"scaleway.com"},"backend_id":"d7b9e22f-c3e8-4e78-91c2-2a6b3de02d96","created_at":"2021-11-04T13:10:41.125337Z","updated_at":"2021-11-04T13:10:41.125337Z"}' headers: Content-Length: - "267" @@ -558,7 +591,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:39 GMT + - Thu, 04 Nov 2021 13:10:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -568,7 +601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f498cc5-6029-4f32-b6bf-bdedfa53ffd1 + - 7b167952-b304-4a03-95d7-60264c2a7b09 status: 200 OK code: 200 duration: "" @@ -579,10 +612,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b16e4dad-e4f4-4081-a774-add8840a940e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "314" @@ -591,7 +624,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:39 GMT + - Thu, 04 Nov 2021 13:10:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -601,7 +634,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c756f8c6-249a-45dd-a1f3-9a5be0c168e5 + - 93a67461-72ec-4e49-9201-29dfec00a81c status: 200 OK code: 200 duration: "" @@ -612,10 +645,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f0e7c1db-4089-4253-a298-afaae373eb20 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/759492f8-1280-400e-b92c-edbfcc32364e method: GET response: - body: '{"id":"f0e7c1db-4089-4253-a298-afaae373eb20","name":"test-lb","description":"","status":"ready","instances":[{"id":"82bd9fb9-f0b1-4b4d-bd4f-5ca0513d2118","status":"ready","ip_address":"10.70.60.107","created_at":"2021-10-22T09:47:05.817837Z","updated_at":"2021-10-22T09:48:39.391318Z","region":"fr-par","zone":"fr-par-1"},{"id":"0b857ae9-481d-41e6-b43c-4234f6090622","status":"ready","ip_address":"10.70.86.13","created_at":"2021-10-22T09:46:40.195396Z","updated_at":"2021-10-22T09:48:39.418246Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:48:34.263339Z","updated_at":"2021-10-22T09:48:35.270491Z","private_network_count":0,"route_count":1,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"ready","instances":[{"id":"e23e6253-90aa-4a83-87f8-645093d99ef1","status":"ready","ip_address":"10.69.124.85","created_at":"2021-11-04T13:00:57.532130Z","updated_at":"2021-11-04T13:10:41.609395Z","region":"fr-par","zone":"fr-par-1"},{"id":"7ceb1f4a-a040-42fb-801c-cebcbe8ff21b","status":"ready","ip_address":"10.71.86.67","created_at":"2021-11-04T13:08:27.461625Z","updated_at":"2021-11-04T13:10:41.577100Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545080Z","updated_at":"2021-11-04T13:10:09.888163Z","private_network_count":0,"route_count":1,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1274" @@ -624,7 +657,40 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:39 GMT + - Thu, 04 Nov 2021 13:10:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8c248b5b-9aae-46b8-9f29-53086bcebd7d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/759492f8-1280-400e-b92c-edbfcc32364e/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:10:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -634,7 +700,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50f5e240-3080-44bb-a663-d655db6a12d4 + - c1006117-3f8b-4bbd-8897-ebbdbcf84db5 status: 200 OK code: 200 duration: "" @@ -645,10 +711,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c416f0f0-4e19-4e5e-b918-6a35ebc59583 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d7b9e22f-c3e8-4e78-91c2-2a6b3de02d96 method: GET response: - body: '{"id":"c416f0f0-4e19-4e5e-b918-6a35ebc59583","name":"tf-lb-bkd-tender-babbage","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"f0e7c1db-4089-4253-a298-afaae373eb20","name":"test-lb","description":"","status":"ready","instances":[{"id":"82bd9fb9-f0b1-4b4d-bd4f-5ca0513d2118","status":"ready","ip_address":"10.70.60.107","created_at":"2021-10-22T09:47:05.817837Z","updated_at":"2021-10-22T09:48:39.391318Z","region":"fr-par","zone":"fr-par-1"},{"id":"0b857ae9-481d-41e6-b43c-4234f6090622","status":"ready","ip_address":"10.70.86.13","created_at":"2021-10-22T09:46:40.195396Z","updated_at":"2021-10-22T09:48:39.418246Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:48:34.263339Z","updated_at":"2021-10-22T09:48:35.270491Z","private_network_count":0,"route_count":1,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-22T09:48:36.835685Z","updated_at":"2021-10-22T09:48:36.835685Z"}' + body: '{"id":"d7b9e22f-c3e8-4e78-91c2-2a6b3de02d96","name":"tf-lb-bkd-eager-thompson","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"ready","instances":[{"id":"7ceb1f4a-a040-42fb-801c-cebcbe8ff21b","status":"ready","ip_address":"10.71.86.67","created_at":"2021-11-04T13:08:27.461625Z","updated_at":"2021-11-04T13:10:41.577100Z","region":"fr-par","zone":"fr-par-1"},{"id":"e23e6253-90aa-4a83-87f8-645093d99ef1","status":"ready","ip_address":"10.69.124.85","created_at":"2021-11-04T13:00:57.532130Z","updated_at":"2021-11-04T13:10:41.609395Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545080Z","updated_at":"2021-11-04T13:10:09.888163Z","private_network_count":0,"route_count":1,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:10:39.389220Z","updated_at":"2021-11-04T13:10:39.389220Z"}' headers: Content-Length: - "1907" @@ -657,7 +723,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:40 GMT + - Thu, 04 Nov 2021 13:10:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -667,7 +733,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7cf4a96e-93b0-4ad2-abe4-12fadcbf5dc8 + - ed3f2357-69e8-4e84-8109-dffcaa6ca02a status: 200 OK code: 200 duration: "" @@ -678,19 +744,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/c9172b50-f94c-4e56-8e63-7e65862a8e79 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b002e507-6aaf-42e2-81ed-23ba321a989b method: GET response: - body: '{"id":"c9172b50-f94c-4e56-8e63-7e65862a8e79","name":"tf-lb-frt-kind-hertz","inbound_port":80,"backend":{"id":"c416f0f0-4e19-4e5e-b918-6a35ebc59583","name":"tf-lb-bkd-tender-babbage","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"f0e7c1db-4089-4253-a298-afaae373eb20","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:48:34.263339Z","updated_at":"2021-10-22T09:48:35.270491Z","private_network_count":0,"route_count":1,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-22T09:48:36.835685Z","updated_at":"2021-10-22T09:48:36.835685Z"},"lb":{"id":"f0e7c1db-4089-4253-a298-afaae373eb20","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:48:34.263339Z","updated_at":"2021-10-22T09:48:35.270491Z","private_network_count":0,"route_count":1,"region":"fr-par","zone":"fr-par-1"},"timeout_client":null,"certificate":null,"certificate_ids":[],"created_at":"2021-10-22T09:48:37.973673Z","updated_at":"2021-10-22T09:48:37.973673Z"}' + body: '{"id":"b002e507-6aaf-42e2-81ed-23ba321a989b","name":"tf-lb-frt-great-chebyshev","inbound_port":80,"backend":{"id":"d7b9e22f-c3e8-4e78-91c2-2a6b3de02d96","name":"tf-lb-bkd-eager-thompson","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545080Z","updated_at":"2021-11-04T13:10:09.888163Z","private_network_count":0,"route_count":1,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:10:39.389220Z","updated_at":"2021-11-04T13:10:39.389220Z"},"lb":{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545080Z","updated_at":"2021-11-04T13:10:09.888163Z","private_network_count":0,"route_count":1,"region":"fr-par","zone":"fr-par-1"},"timeout_client":null,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:10:40.113849Z","updated_at":"2021-11-04T13:10:40.113849Z"}' headers: Content-Length: - - "2591" + - "2596" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:40 GMT + - Thu, 04 Nov 2021 13:10:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -700,7 +766,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6b4263e-14a6-4646-ab29-7930009c2990 + - ae9de850-1254-4922-8c16-41cdeadb7fa0 status: 200 OK code: 200 duration: "" @@ -711,7 +777,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/c9172b50-f94c-4e56-8e63-7e65862a8e79/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b002e507-6aaf-42e2-81ed-23ba321a989b/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' @@ -723,7 +789,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:40 GMT + - Thu, 04 Nov 2021 13:10:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -733,7 +799,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eec5dc40-8625-43c3-abd1-948b8eae452f + - 9ad4047a-7376-4108-9319-6de719de6670 status: 200 OK code: 200 duration: "" @@ -744,10 +810,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/4560df91-6c3e-4c56-b529-5f054d322406 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/72ea9094-a6c6-4087-85d8-4ce8a1a08757 method: GET response: - body: '{"id":"4560df91-6c3e-4c56-b529-5f054d322406","frontend_id":"c9172b50-f94c-4e56-8e63-7e65862a8e79","match":{"sni":"scaleway.com"},"backend_id":"c416f0f0-4e19-4e5e-b918-6a35ebc59583","created_at":"2021-10-22T09:48:38.959839Z","updated_at":"2021-10-22T09:48:38.959839Z"}' + body: '{"id":"72ea9094-a6c6-4087-85d8-4ce8a1a08757","frontend_id":"b002e507-6aaf-42e2-81ed-23ba321a989b","match":{"sni":"scaleway.com"},"backend_id":"d7b9e22f-c3e8-4e78-91c2-2a6b3de02d96","created_at":"2021-11-04T13:10:41.125337Z","updated_at":"2021-11-04T13:10:41.125337Z"}' headers: Content-Length: - "267" @@ -756,7 +822,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:40 GMT + - Thu, 04 Nov 2021 13:10:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -766,7 +832,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea4eaa3b-0beb-42cc-9ff1-3af1a35e08de + - c8deaf0f-848e-40c2-bf1c-1ecb9c9fc919 status: 200 OK code: 200 duration: "" @@ -777,7 +843,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/4560df91-6c3e-4c56-b529-5f054d322406 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/72ea9094-a6c6-4087-85d8-4ce8a1a08757 method: DELETE response: body: "" @@ -787,7 +853,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:41 GMT + - Thu, 04 Nov 2021 13:10:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -797,7 +863,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f0bf95e-d19f-4890-ab28-90387b37f81a + - b4b4e5ce-4c98-4c3c-9ac8-bb8cc484ce06 status: 204 No Content code: 204 duration: "" @@ -808,7 +874,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/c9172b50-f94c-4e56-8e63-7e65862a8e79 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b002e507-6aaf-42e2-81ed-23ba321a989b method: DELETE response: body: "" @@ -818,7 +884,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:41 GMT + - Thu, 04 Nov 2021 13:10:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -828,7 +894,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa834775-c1f9-4c86-b611-e78f758e3198 + - 8460dc0b-125f-42ac-8396-d2cea55a4ab3 status: 204 No Content code: 204 duration: "" @@ -839,7 +905,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c416f0f0-4e19-4e5e-b918-6a35ebc59583 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d7b9e22f-c3e8-4e78-91c2-2a6b3de02d96 method: DELETE response: body: "" @@ -849,7 +915,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:41 GMT + - Thu, 04 Nov 2021 13:10:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -859,7 +925,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bc9f3c8-f490-4ed9-a503-51335f7aa007 + - 7b54598a-f576-4ff4-9b1d-baad81295d4a status: 204 No Content code: 204 duration: "" @@ -870,10 +936,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f0e7c1db-4089-4253-a298-afaae373eb20 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/759492f8-1280-400e-b92c-edbfcc32364e method: GET response: - body: '{"id":"f0e7c1db-4089-4253-a298-afaae373eb20","name":"test-lb","description":"","status":"ready","instances":[{"id":"82bd9fb9-f0b1-4b4d-bd4f-5ca0513d2118","status":"ready","ip_address":"10.70.60.107","created_at":"2021-10-22T09:47:05.817837Z","updated_at":"2021-10-22T09:48:41.972771Z","region":"fr-par","zone":"fr-par-1"},{"id":"0b857ae9-481d-41e6-b43c-4234f6090622","status":"ready","ip_address":"10.70.86.13","created_at":"2021-10-22T09:46:40.195396Z","updated_at":"2021-10-22T09:48:42.061378Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"b16e4dad-e4f4-4081-a774-add8840a940e","ip_address":"51.159.113.169","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"f0e7c1db-4089-4253-a298-afaae373eb20","reverse":"51-159-113-169.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-22T09:48:34.263339Z","updated_at":"2021-10-22T09:48:35.270491Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"ready","instances":[{"id":"e23e6253-90aa-4a83-87f8-645093d99ef1","status":"ready","ip_address":"10.69.124.85","created_at":"2021-11-04T13:00:57.532130Z","updated_at":"2021-11-04T13:10:44.571099Z","region":"fr-par","zone":"fr-par-1"},{"id":"7ceb1f4a-a040-42fb-801c-cebcbe8ff21b","status":"ready","ip_address":"10.71.86.67","created_at":"2021-11-04T13:08:27.461625Z","updated_at":"2021-11-04T13:10:44.661424Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545080Z","updated_at":"2021-11-04T13:10:09.888163Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - "1274" @@ -882,7 +948,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:42 GMT + - Thu, 04 Nov 2021 13:10:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -892,7 +958,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94320199-fc59-4084-aa5c-b24f9cf9896c + - 1d581247-b0ac-49b2-8794-f167d7f68156 status: 200 OK code: 200 duration: "" @@ -903,7 +969,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f0e7c1db-4089-4253-a298-afaae373eb20?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/759492f8-1280-400e-b92c-edbfcc32364e?release_ip=false method: DELETE response: body: "" @@ -913,7 +979,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:42 GMT + - Thu, 04 Nov 2021 13:10:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -923,7 +989,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37ad32f2-b045-429c-8e59-bd996d231430 + - 297bf52c-7d9b-41c3-b3f2-fc052666bbc1 status: 204 No Content code: 204 duration: "" @@ -934,7 +1000,73 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b16e4dad-e4f4-4081-a774-add8840a940e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/759492f8-1280-400e-b92c-edbfcc32364e + method: GET + response: + body: '{"id":"759492f8-1280-400e-b92c-edbfcc32364e","name":"test-lb","description":"","status":"pending","instances":[{"id":"e23e6253-90aa-4a83-87f8-645093d99ef1","status":"ready","ip_address":"10.69.124.85","created_at":"2021-11-04T13:00:57.532130Z","updated_at":"2021-11-04T13:10:44.571099Z","region":"fr-par","zone":"fr-par-1"},{"id":"7ceb1f4a-a040-42fb-801c-cebcbe8ff21b","status":"ready","ip_address":"10.71.86.67","created_at":"2021-11-04T13:08:27.461625Z","updated_at":"2021-11-04T13:10:44.661424Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"759492f8-1280-400e-b92c-edbfcc32364e","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:10:08.545080Z","updated_at":"2021-11-04T13:10:45.340758Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1276" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:10:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0847b404-d393-4501-853c-a7a8f4806f5e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/759492f8-1280-400e-b92c-edbfcc32364e + method: GET + response: + body: '{"message":"lbs not Found"}' + headers: + Content-Length: + - "27" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:11:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d461b6ef-76b9-41c4-8ecb-18c380922cc6 + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: DELETE response: body: "" @@ -944,7 +1076,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:44 GMT + - Thu, 04 Nov 2021 13:11:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -954,7 +1086,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bca61c27-9712-4d3a-b020-c3dc3b8da04b + - e988c4ee-ecf9-495e-8668-1cdfbf6145cc status: 204 No Content code: 204 duration: "" @@ -965,7 +1097,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/4560df91-6c3e-4c56-b529-5f054d322406 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/72ea9094-a6c6-4087-85d8-4ce8a1a08757 method: GET response: body: '{"message":"privateNetwork not Found"}' @@ -977,7 +1109,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 22 Oct 2021 09:48:44 GMT + - Thu, 04 Nov 2021 13:11:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -987,7 +1119,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2141f02d-c848-40a0-9b65-81e695f6e47d + - 04664eaa-3978-4cdd-b53d-993630004380 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/lbacl-basic.cassette.yaml b/scaleway/testdata/lbacl-basic.cassette.yaml index 1903a84c86..aba9b57f82 100644 --- a/scaleway/testdata/lbacl-basic.cassette.yaml +++ b/scaleway/testdata/lbacl-basic.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "278" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:00 GMT + - Thu, 04 Nov 2021 13:03:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0d08577-9ed3-4bf5-ae62-f246b1cdaa98 + - 90ee6bd0-515e-4383-a688-403ccd31b471 status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/5668b5e2-ff42-4ffd-a8e8-260add7c6336 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "278" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:00 GMT + - Thu, 04 Nov 2021 13:03:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ccd9545-eed8-4e11-85f0-e8e732b834a7 + - 288cf83f-da16-4432-8174-a008b18756ad status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","name":"test-lb-acl","description":"","ip_id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' + body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","name":"test-lb-acl","description":"","ip_id":"a7972715-724c-448c-85b2-640ffc655a09","tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431493542Z","updated_at":"2021-10-21T15:23:00.431493542Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507716709Z","updated_at":"2021-11-04T13:03:26.507716709Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "860" + - "862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:00 GMT + - Thu, 04 Nov 2021 13:03:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65f87211-2517-412c-9744-6b0a12c89915 + - 6d25f3db-89e9-4020-8767-c8f6983b72f8 status: 200 OK code: 200 duration: "" @@ -111,19 +111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9cd9103-2b3a-4ccd-b002-0fddc41978a0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b method: GET response: - body: '{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"pending","instances":[{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"ready","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:00.866207Z","region":"fr-par","zone":"fr-par-1"},{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"unknown","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:00.661993Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:00.675167Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"pending","instances":[{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"unknown","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:03:26.720880Z","region":"fr-par","zone":"fr-par-1"},{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"unknown","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:03:26.727324Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:26.507717Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1280" + - "1285" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:00 GMT + - Thu, 04 Nov 2021 13:03:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4efab59c-55cc-410f-bcbf-e118a8e59887 + - 45cd3664-7154-48c2-946b-98ed967ad11e status: 200 OK code: 200 duration: "" @@ -144,19 +144,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9cd9103-2b3a-4ccd-b002-0fddc41978a0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b method: GET response: - body: '{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"ready","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:00.866207Z","region":"fr-par","zone":"fr-par-1"},{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"ready","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:01.038208Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"ready","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:03:27.089384Z","region":"fr-par","zone":"fr-par-1"},{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"ready","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:03:27.489203Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1276" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:03 GMT + - Thu, 04 Nov 2021 13:03:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 853d9ab1-3e85-49dc-9d56-fe6b1e845a96 + - 85dc8d28-8e05-4512-aa83-a6825b306497 status: 200 OK code: 200 duration: "" @@ -177,19 +177,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9cd9103-2b3a-4ccd-b002-0fddc41978a0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b method: GET response: - body: '{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"ready","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:00.866207Z","region":"fr-par","zone":"fr-par-1"},{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"ready","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:01.038208Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"ready","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:03:27.089384Z","region":"fr-par","zone":"fr-par-1"},{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"ready","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:03:27.489203Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1276" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:03 GMT + - Thu, 04 Nov 2021 13:03:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16848d3f-6f41-4cc1-b0ea-119a9545c736 + - 6fc284da-5b7c-40d5-801a-33c9c585cad2 status: 200 OK code: 200 duration: "" @@ -210,19 +210,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9cd9103-2b3a-4ccd-b002-0fddc41978a0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"ready","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:00.866207Z","region":"fr-par","zone":"fr-par-1"},{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"ready","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:01.038208Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1276" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:03 GMT + - Thu, 04 Nov 2021 13:03:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,12 +232,45 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0146875d-54c8-48da-accc-37c9ccf23777 + - 32055f34-bfac-44df-b981-66e113243594 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"check_max_retries":2,"port":80,"check_send_proxy":false,"check_timeout":30000,"check_delay":60000},"server_ip":[],"send_proxy_v2":false,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","timeout_server":null,"timeout_connect":null,"timeout_tunnel":null}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b + method: GET + response: + body: '{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"ready","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:03:27.089384Z","region":"fr-par","zone":"fr-par-1"},{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"ready","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:03:27.489203Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1279" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:03:57 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7d58e01b-a9ea-4006-a9db-48c710563628 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"check_max_retries":2,"port":80,"check_send_proxy":false,"check_timeout":30000,"check_delay":60000},"server_ip":[],"send_proxy_v2":false,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","timeout_server":null,"timeout_connect":null,"timeout_tunnel":null}' form: {} headers: Content-Type: @@ -245,19 +278,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9cd9103-2b3a-4ccd-b002-0fddc41978a0/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b/backends method: POST response: - body: '{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"pending","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:03.340883833Z","region":"fr-par","zone":"fr-par-1"},{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"pending","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:03.398136846Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310975739Z","updated_at":"2021-10-21T15:23:03.310975739Z"}' + body: '{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"pending","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:03:57.199684357Z","region":"fr-par","zone":"fr-par-1"},{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"pending","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:03:57.274687069Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309317Z","updated_at":"2021-11-04T13:03:57.170309317Z"}' headers: Content-Length: - - "1930" + - "1929" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:03 GMT + - Thu, 04 Nov 2021 13:03:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -267,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5c9ab68-76a4-4851-bef3-4b2c5c1494ac + - 4fe7d590-5634-4ab6-a359-b83bc23eaf71 status: 200 OK code: 200 duration: "" @@ -278,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c4e944c2-f9a9-4e29-94a1-83286a016507 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/b1fb2eb7-de0e-4625-9a26-7d35891847ff method: GET response: - body: '{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"pending","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:03.398137Z","region":"fr-par","zone":"fr-par-1"},{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"pending","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:03.340884Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"}' + body: '{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"pending","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:03:57.274687Z","region":"fr-par","zone":"fr-par-1"},{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"pending","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:03:57.199684Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"}' headers: Content-Length: - - "1918" + - "1917" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:03 GMT + - Thu, 04 Nov 2021 13:03:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92bafa33-aa08-4f2b-a791-d98f1ff22b96 + - 651f2a11-8df5-471a-8f5c-8eb4c8ab9834 status: 200 OK code: 200 duration: "" @@ -311,19 +344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9cd9103-2b3a-4ccd-b002-0fddc41978a0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b method: GET response: - body: '{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"ready","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:03.633206Z","region":"fr-par","zone":"fr-par-1"},{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"ready","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:03.642812Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"ready","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:03:57.472429Z","region":"fr-par","zone":"fr-par-1"},{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"ready","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:03:57.521983Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1276" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:03 GMT + - Thu, 04 Nov 2021 13:03:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,12 +366,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8d4b609-d4e5-4a35-8ef2-6086aa635351 + - c65861d1-a90f-41fc-b947-30b7e8f94351 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-test","inbound_port":80,"backend_id":"c4e944c2-f9a9-4e29-94a1-83286a016507","certificate_id":null,"certificate_ids":null,"timeout_client":30000}' + body: '{"name":"tf-test","inbound_port":80,"backend_id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","certificate_id":null,"certificate_ids":null,"timeout_client":30000}' form: {} headers: Content-Type: @@ -346,19 +379,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9cd9103-2b3a-4ccd-b002-0fddc41978a0/frontends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b/frontends method: POST response: - body: '{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"pending","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:03.976294222Z","region":"fr-par","zone":"fr-par-1"},{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"pending","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:04.062436813Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"}' + body: '{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"pending","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:03:57.795170578Z","region":"fr-par","zone":"fr-par-1"},{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"pending","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:03:57.880963357Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"}' headers: Content-Length: - - "3022" + - "3023" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:04 GMT + - Thu, 04 Nov 2021 13:03:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -368,7 +401,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b3eb23c-5bd1-4ace-8fdb-46c8e2931782 + - 79d91c15-4da4-4633-ae25-74b2c6604aea status: 200 OK code: 200 duration: "" @@ -379,7 +412,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' @@ -391,7 +424,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:04 GMT + - Thu, 04 Nov 2021 13:03:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -401,7 +434,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99e76c76-cb04-4d05-8386-374dd4d69140 + - 9521afb0-1d7f-47cf-adc5-4ebc3adcb6f8 status: 200 OK code: 200 duration: "" @@ -414,10 +447,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905/acls + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7/acls method: POST response: - body: '{"id":"3105c565-30d1-4679-984d-0bf16a65e21e","name":"test-acl","match":{"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":1,"created_at":"2021-10-21T15:23:04.464942437Z","updated_at":"2021-10-21T15:23:04.464942437Z"}' + body: '{"id":"5e31806c-4eff-45aa-a771-c1628b0203fa","name":"test-acl","match":{"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":1,"created_at":"2021-11-04T13:03:58.545336051Z","updated_at":"2021-11-04T13:03:58.545336051Z"}' headers: Content-Length: - "2961" @@ -426,7 +459,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:04 GMT + - Thu, 04 Nov 2021 13:03:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -436,12 +469,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b9f7e50-af00-4673-97ef-5ac966fbe701 + - 33c55908-4ab0-48c1-bea1-40bf90a114a8 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-acl-cocky-hodgkin","action":{"type":"allow"},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"http_filter_option":null,"invert":true},"index":2}' + body: '{"name":"tf-lb-acl-lucid-bartik","action":{"type":"allow"},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"http_filter_option":null,"invert":true},"index":2}' form: {} headers: Content-Type: @@ -449,19 +482,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905/acls + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7/acls method: POST response: - body: '{"id":"b77bb109-e8f9-4dc1-9c86-7cd6a32eccf3","name":"tf-lb-acl-cocky-hodgkin","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":2,"created_at":"2021-10-21T15:23:04.851550014Z","updated_at":"2021-10-21T15:23:04.851550014Z"}' + body: '{"id":"e9f1db63-543b-4d62-ad37-26b6def3d44a","name":"tf-lb-acl-lucid-bartik","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":2,"created_at":"2021-11-04T13:03:58.968104948Z","updated_at":"2021-11-04T13:03:58.968104948Z"}' headers: Content-Length: - - "2955" + - "2954" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:05 GMT + - Thu, 04 Nov 2021 13:03:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -471,12 +504,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7a9d653-081a-4613-acbf-7a0ecb3dbf23 + - 807102ab-8214-48fa-9f2d-bb46c02b5878 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-acl-confident-mclean","action":{"type":"allow"},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"http_filter_option":null,"invert":false},"index":3}' + body: '{"name":"tf-lb-acl-brave-gauss","action":{"type":"allow"},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"http_filter_option":null,"invert":false},"index":3}' form: {} headers: Content-Type: @@ -484,19 +517,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905/acls + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7/acls method: POST response: - body: '{"id":"6a388080-adc2-4a51-a1c8-7489e57c30c7","name":"tf-lb-acl-confident-mclean","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":3,"created_at":"2021-10-21T15:23:05.228181802Z","updated_at":"2021-10-21T15:23:05.228181802Z"}' + body: '{"id":"c418c647-7e58-4439-a46d-58537cc2e7dd","name":"tf-lb-acl-brave-gauss","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":3,"created_at":"2021-11-04T13:03:59.286618486Z","updated_at":"2021-11-04T13:03:59.286618486Z"}' headers: Content-Length: - - "2959" + - "2954" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:05 GMT + - Thu, 04 Nov 2021 13:03:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -506,12 +539,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97d39747-f51d-4d0b-a934-3c66522b68b4 + - f69ba85f-dd7a-4dbe-a53e-f3b366953b24 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-acl-goofy-einstein","action":{"type":"allow"},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"http_filter_option":null,"invert":false},"index":4}' + body: '{"name":"tf-lb-acl-elastic-rubin","action":{"type":"allow"},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"http_filter_option":null,"invert":false},"index":4}' form: {} headers: Content-Type: @@ -519,19 +552,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905/acls + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7/acls method: POST response: - body: '{"id":"259a6dbe-9924-4f92-9e2d-191a3c488e20","name":"tf-lb-acl-goofy-einstein","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":4,"created_at":"2021-10-21T15:23:05.586882396Z","updated_at":"2021-10-21T15:23:05.586882396Z"}' + body: '{"id":"48ebf9ac-a74d-4f28-8cf8-2a62a5262515","name":"tf-lb-acl-elastic-rubin","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":4,"created_at":"2021-11-04T13:03:59.643303847Z","updated_at":"2021-11-04T13:03:59.643303847Z"}' headers: Content-Length: - - "2944" + - "2943" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:05 GMT + - Thu, 04 Nov 2021 13:03:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -541,12 +574,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc90973a-b81e-4343-ae65-6a04eca268d0 + - 4d477051-3beb-4fcf-a1cb-937383cab99a status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-acl-sleepy-gould","action":{"type":"deny"},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"http_filter_option":null,"invert":false},"index":5}' + body: '{"name":"tf-lb-acl-angry-meitner","action":{"type":"deny"},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"http_filter_option":null,"invert":false},"index":5}' form: {} headers: Content-Type: @@ -554,19 +587,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905/acls + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7/acls method: POST response: - body: '{"id":"ff11c8f8-1b6a-4855-bfd6-6aa7c7a3efbe","name":"tf-lb-acl-sleepy-gould","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"deny"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":5,"created_at":"2021-10-21T15:23:06.017132714Z","updated_at":"2021-10-21T15:23:06.017132714Z"}' + body: '{"id":"ab20d07d-6867-4a98-b6c1-b416ace520b0","name":"tf-lb-acl-angry-meitner","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"deny"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":5,"created_at":"2021-11-04T13:04:00.088034134Z","updated_at":"2021-11-04T13:04:00.088034134Z"}' headers: Content-Length: - - "2941" + - "2942" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:06 GMT + - Thu, 04 Nov 2021 13:04:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -576,7 +609,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9308249-8234-44b6-91e8-1f0628a7d7e0 + - 38e9f853-84ba-4b2d-9ec7-c715127a1cb0 status: 200 OK code: 200 duration: "" @@ -587,10 +620,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7 method: GET response: - body: '{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"}' + body: '{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"}' headers: Content-Length: - "2588" @@ -599,7 +632,38 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:06 GMT + - Thu, 04 Nov 2021 13:04:00 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c423b304-4287-48f6-95ba-badc3dfe1022 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7/acls?order_by=created_at_asc&page=1 + method: GET + response: + body: '{"acls":[{"id":"5e31806c-4eff-45aa-a771-c1628b0203fa","name":"test-acl","match":{"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":1,"created_at":"2021-11-04T13:03:58.545336Z","updated_at":"2021-11-04T13:03:58.545336Z"},{"id":"e9f1db63-543b-4d62-ad37-26b6def3d44a","name":"tf-lb-acl-lucid-bartik","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":2,"created_at":"2021-11-04T13:03:58.968105Z","updated_at":"2021-11-04T13:03:58.968105Z"},{"id":"c418c647-7e58-4439-a46d-58537cc2e7dd","name":"tf-lb-acl-brave-gauss","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":3,"created_at":"2021-11-04T13:03:59.286618Z","updated_at":"2021-11-04T13:03:59.286618Z"},{"id":"48ebf9ac-a74d-4f28-8cf8-2a62a5262515","name":"tf-lb-acl-elastic-rubin","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":4,"created_at":"2021-11-04T13:03:59.643304Z","updated_at":"2021-11-04T13:03:59.643304Z"},{"id":"ab20d07d-6867-4a98-b6c1-b416ace520b0","name":"tf-lb-acl-angry-meitner","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"deny"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":5,"created_at":"2021-11-04T13:04:00.088034Z","updated_at":"2021-11-04T13:04:00.088034Z"}],"total_count":5}' + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:04:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -609,7 +673,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1357fd88-8aa7-4d9d-80be-7be754650f93 + - 0c8a1a4d-7cd0-40a2-ac04-612023146230 status: 200 OK code: 200 duration: "" @@ -620,17 +684,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"id":"3105c565-30d1-4679-984d-0bf16a65e21e","name":"test-acl","match":{"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":1,"created_at":"2021-10-21T15:23:04.464942Z","updated_at":"2021-10-21T15:23:04.464942Z"},{"id":"b77bb109-e8f9-4dc1-9c86-7cd6a32eccf3","name":"tf-lb-acl-cocky-hodgkin","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":2,"created_at":"2021-10-21T15:23:04.851550Z","updated_at":"2021-10-21T15:23:04.851550Z"},{"id":"6a388080-adc2-4a51-a1c8-7489e57c30c7","name":"tf-lb-acl-confident-mclean","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":3,"created_at":"2021-10-21T15:23:05.228182Z","updated_at":"2021-10-21T15:23:05.228182Z"},{"id":"259a6dbe-9924-4f92-9e2d-191a3c488e20","name":"tf-lb-acl-goofy-einstein","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":4,"created_at":"2021-10-21T15:23:05.586882Z","updated_at":"2021-10-21T15:23:05.586882Z"},{"id":"ff11c8f8-1b6a-4855-bfd6-6aa7c7a3efbe","name":"tf-lb-acl-sleepy-gould","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"deny"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":5,"created_at":"2021-10-21T15:23:06.017133Z","updated_at":"2021-10-21T15:23:06.017133Z"}],"total_count":5}' + body: '{"acls":[{"id":"5e31806c-4eff-45aa-a771-c1628b0203fa","name":"test-acl","match":{"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":1,"created_at":"2021-11-04T13:03:58.545336Z","updated_at":"2021-11-04T13:03:58.545336Z"},{"id":"e9f1db63-543b-4d62-ad37-26b6def3d44a","name":"tf-lb-acl-lucid-bartik","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":2,"created_at":"2021-11-04T13:03:58.968105Z","updated_at":"2021-11-04T13:03:58.968105Z"},{"id":"c418c647-7e58-4439-a46d-58537cc2e7dd","name":"tf-lb-acl-brave-gauss","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":3,"created_at":"2021-11-04T13:03:59.286618Z","updated_at":"2021-11-04T13:03:59.286618Z"},{"id":"48ebf9ac-a74d-4f28-8cf8-2a62a5262515","name":"tf-lb-acl-elastic-rubin","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":4,"created_at":"2021-11-04T13:03:59.643304Z","updated_at":"2021-11-04T13:03:59.643304Z"},{"id":"ab20d07d-6867-4a98-b6c1-b416ace520b0","name":"tf-lb-acl-angry-meitner","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"deny"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":5,"created_at":"2021-11-04T13:04:00.088034Z","updated_at":"2021-11-04T13:04:00.088034Z"}],"total_count":5}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:06 GMT + - Thu, 04 Nov 2021 13:04:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -640,7 +704,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4040048-28bf-48ed-928d-00ce02ded162 + - 55db73bd-33cb-43d5-bd63-90cf6158641c status: 200 OK code: 200 duration: "" @@ -651,17 +715,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"acls":[{"id":"3105c565-30d1-4679-984d-0bf16a65e21e","name":"test-acl","match":{"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":1,"created_at":"2021-10-21T15:23:04.464942Z","updated_at":"2021-10-21T15:23:04.464942Z"},{"id":"b77bb109-e8f9-4dc1-9c86-7cd6a32eccf3","name":"tf-lb-acl-cocky-hodgkin","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":2,"created_at":"2021-10-21T15:23:04.851550Z","updated_at":"2021-10-21T15:23:04.851550Z"},{"id":"6a388080-adc2-4a51-a1c8-7489e57c30c7","name":"tf-lb-acl-confident-mclean","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":3,"created_at":"2021-10-21T15:23:05.228182Z","updated_at":"2021-10-21T15:23:05.228182Z"},{"id":"259a6dbe-9924-4f92-9e2d-191a3c488e20","name":"tf-lb-acl-goofy-einstein","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":4,"created_at":"2021-10-21T15:23:05.586882Z","updated_at":"2021-10-21T15:23:05.586882Z"},{"id":"ff11c8f8-1b6a-4855-bfd6-6aa7c7a3efbe","name":"tf-lb-acl-sleepy-gould","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"deny"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":5,"created_at":"2021-10-21T15:23:06.017133Z","updated_at":"2021-10-21T15:23:06.017133Z"}],"total_count":5}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: + Content-Length: + - "314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:07 GMT + - Thu, 04 Nov 2021 13:04:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -671,7 +737,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ef6286c-c3f6-4c69-99d4-294f33f18fbb + - ebb31e5e-6516-4581-aac5-498d44ca534c status: 200 OK code: 200 duration: "" @@ -682,19 +748,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/5668b5e2-ff42-4ffd-a8e8-260add7c6336 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b method: GET response: - body: '{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"ready","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:04:00.501249Z","region":"fr-par","zone":"fr-par-1"},{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"ready","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:04:00.642917Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "312" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:07 GMT + - Thu, 04 Nov 2021 13:04:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -704,7 +770,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8e918a8-a792-4ad5-81dd-421905bf1322 + - 12d3f1f6-b65b-4ddd-8445-bdbc9bceaf52 status: 200 OK code: 200 duration: "" @@ -715,19 +781,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9cd9103-2b3a-4ccd-b002-0fddc41978a0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"ready","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:06.485740Z","region":"fr-par","zone":"fr-par-1"},{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"ready","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:06.516051Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1276" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:07 GMT + - Thu, 04 Nov 2021 13:04:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -737,7 +803,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f615021-d979-47e8-a579-feefd43d088e + - 77490b88-b1a3-4e01-9a3d-940d01a1854a status: 200 OK code: 200 duration: "" @@ -748,19 +814,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c4e944c2-f9a9-4e29-94a1-83286a016507 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/b1fb2eb7-de0e-4625-9a26-7d35891847ff method: GET response: - body: '{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"ready","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:06.516051Z","region":"fr-par","zone":"fr-par-1"},{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"ready","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:06.485740Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"}' + body: '{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"ready","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:04:00.642917Z","region":"fr-par","zone":"fr-par-1"},{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"ready","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:04:00.501249Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"}' headers: Content-Length: - - "1914" + - "1913" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:07 GMT + - Thu, 04 Nov 2021 13:04:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -770,7 +836,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b9a8c1a-03d5-4a7e-b05c-5a8fe46f4978 + - cc851a4c-6984-4531-be9d-af34125eb27e status: 200 OK code: 200 duration: "" @@ -781,10 +847,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7 method: GET response: - body: '{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"}' + body: '{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"}' headers: Content-Length: - "2588" @@ -793,7 +859,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:07 GMT + - Thu, 04 Nov 2021 13:04:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -803,7 +869,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fd06cd8-b1d6-480e-a25f-fc6e2a941530 + - b96bdc10-c3c7-49f2-8361-d8e3acda1969 status: 200 OK code: 200 duration: "" @@ -814,17 +880,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"id":"3105c565-30d1-4679-984d-0bf16a65e21e","name":"test-acl","match":{"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":1,"created_at":"2021-10-21T15:23:04.464942Z","updated_at":"2021-10-21T15:23:04.464942Z"},{"id":"b77bb109-e8f9-4dc1-9c86-7cd6a32eccf3","name":"tf-lb-acl-cocky-hodgkin","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":2,"created_at":"2021-10-21T15:23:04.851550Z","updated_at":"2021-10-21T15:23:04.851550Z"},{"id":"6a388080-adc2-4a51-a1c8-7489e57c30c7","name":"tf-lb-acl-confident-mclean","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":3,"created_at":"2021-10-21T15:23:05.228182Z","updated_at":"2021-10-21T15:23:05.228182Z"},{"id":"259a6dbe-9924-4f92-9e2d-191a3c488e20","name":"tf-lb-acl-goofy-einstein","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":4,"created_at":"2021-10-21T15:23:05.586882Z","updated_at":"2021-10-21T15:23:05.586882Z"},{"id":"ff11c8f8-1b6a-4855-bfd6-6aa7c7a3efbe","name":"tf-lb-acl-sleepy-gould","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"deny"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":5,"created_at":"2021-10-21T15:23:06.017133Z","updated_at":"2021-10-21T15:23:06.017133Z"}],"total_count":5}' + body: '{"acls":[{"id":"5e31806c-4eff-45aa-a771-c1628b0203fa","name":"test-acl","match":{"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":1,"created_at":"2021-11-04T13:03:58.545336Z","updated_at":"2021-11-04T13:03:58.545336Z"},{"id":"e9f1db63-543b-4d62-ad37-26b6def3d44a","name":"tf-lb-acl-lucid-bartik","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":2,"created_at":"2021-11-04T13:03:58.968105Z","updated_at":"2021-11-04T13:03:58.968105Z"},{"id":"c418c647-7e58-4439-a46d-58537cc2e7dd","name":"tf-lb-acl-brave-gauss","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":3,"created_at":"2021-11-04T13:03:59.286618Z","updated_at":"2021-11-04T13:03:59.286618Z"},{"id":"48ebf9ac-a74d-4f28-8cf8-2a62a5262515","name":"tf-lb-acl-elastic-rubin","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":4,"created_at":"2021-11-04T13:03:59.643304Z","updated_at":"2021-11-04T13:03:59.643304Z"},{"id":"ab20d07d-6867-4a98-b6c1-b416ace520b0","name":"tf-lb-acl-angry-meitner","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"deny"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":5,"created_at":"2021-11-04T13:04:00.088034Z","updated_at":"2021-11-04T13:04:00.088034Z"}],"total_count":5}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:08 GMT + - Thu, 04 Nov 2021 13:04:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -834,7 +900,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 244e9532-09b3-4d2e-a7f9-83f279cd99cf + - 5482fe55-b261-49f3-9691-81685a2ff2b4 status: 200 OK code: 200 duration: "" @@ -845,19 +911,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/5668b5e2-ff42-4ffd-a8e8-260add7c6336 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "312" + - "314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:08 GMT + - Thu, 04 Nov 2021 13:04:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -867,7 +933,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d2c8a5f-1fec-4101-ae15-4edf97d6eb94 + - 4db3424c-84b2-4779-887c-e08fd9bb5c19 status: 200 OK code: 200 duration: "" @@ -878,19 +944,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9cd9103-2b3a-4ccd-b002-0fddc41978a0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b method: GET response: - body: '{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"ready","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:06.485740Z","region":"fr-par","zone":"fr-par-1"},{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"ready","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:06.516051Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"ready","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:04:00.501249Z","region":"fr-par","zone":"fr-par-1"},{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"ready","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:04:00.642917Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1276" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:08 GMT + - Thu, 04 Nov 2021 13:04:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -900,7 +966,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 363e5d15-2d9a-4a23-8b27-dbf668116430 + - 762558bb-25af-464e-a0ef-2415b072d5b3 status: 200 OK code: 200 duration: "" @@ -911,19 +977,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c4e944c2-f9a9-4e29-94a1-83286a016507 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"ready","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:06.516051Z","region":"fr-par","zone":"fr-par-1"},{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"ready","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:06.485740Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1914" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:08 GMT + - Thu, 04 Nov 2021 13:04:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -933,7 +999,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3dec4c6-0d20-4a52-98f3-1627d198f99b + - 30a8302a-e301-422b-b5e4-91b48af4632d status: 200 OK code: 200 duration: "" @@ -944,10 +1010,43 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/b1fb2eb7-de0e-4625-9a26-7d35891847ff method: GET response: - body: '{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"}' + body: '{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"ready","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:04:00.642917Z","region":"fr-par","zone":"fr-par-1"},{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"ready","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:04:00.501249Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"}' + headers: + Content-Length: + - "1913" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:04:03 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cc6707bb-dc94-4b85-ad9c-c9bb12b540ab + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7 + method: GET + response: + body: '{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"}' headers: Content-Length: - "2588" @@ -956,7 +1055,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:09 GMT + - Thu, 04 Nov 2021 13:04:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -966,7 +1065,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0e2ee41-7a34-4558-b32d-1ae378ccec65 + - 65b55c7c-d626-4d33-9cf9-d723430295f9 status: 200 OK code: 200 duration: "" @@ -977,17 +1076,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"id":"3105c565-30d1-4679-984d-0bf16a65e21e","name":"test-acl","match":{"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":1,"created_at":"2021-10-21T15:23:04.464942Z","updated_at":"2021-10-21T15:23:04.464942Z"},{"id":"b77bb109-e8f9-4dc1-9c86-7cd6a32eccf3","name":"tf-lb-acl-cocky-hodgkin","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":2,"created_at":"2021-10-21T15:23:04.851550Z","updated_at":"2021-10-21T15:23:04.851550Z"},{"id":"6a388080-adc2-4a51-a1c8-7489e57c30c7","name":"tf-lb-acl-confident-mclean","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":3,"created_at":"2021-10-21T15:23:05.228182Z","updated_at":"2021-10-21T15:23:05.228182Z"},{"id":"259a6dbe-9924-4f92-9e2d-191a3c488e20","name":"tf-lb-acl-goofy-einstein","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":4,"created_at":"2021-10-21T15:23:05.586882Z","updated_at":"2021-10-21T15:23:05.586882Z"},{"id":"ff11c8f8-1b6a-4855-bfd6-6aa7c7a3efbe","name":"tf-lb-acl-sleepy-gould","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"deny"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:03.900865Z"},"index":5,"created_at":"2021-10-21T15:23:06.017133Z","updated_at":"2021-10-21T15:23:06.017133Z"}],"total_count":5}' + body: '{"acls":[{"id":"5e31806c-4eff-45aa-a771-c1628b0203fa","name":"test-acl","match":{"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":1,"created_at":"2021-11-04T13:03:58.545336Z","updated_at":"2021-11-04T13:03:58.545336Z"},{"id":"e9f1db63-543b-4d62-ad37-26b6def3d44a","name":"tf-lb-acl-lucid-bartik","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":2,"created_at":"2021-11-04T13:03:58.968105Z","updated_at":"2021-11-04T13:03:58.968105Z"},{"id":"c418c647-7e58-4439-a46d-58537cc2e7dd","name":"tf-lb-acl-brave-gauss","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":3,"created_at":"2021-11-04T13:03:59.286618Z","updated_at":"2021-11-04T13:03:59.286618Z"},{"id":"48ebf9ac-a74d-4f28-8cf8-2a62a5262515","name":"tf-lb-acl-elastic-rubin","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":4,"created_at":"2021-11-04T13:03:59.643304Z","updated_at":"2021-11-04T13:03:59.643304Z"},{"id":"ab20d07d-6867-4a98-b6c1-b416ace520b0","name":"tf-lb-acl-angry-meitner","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"deny"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:03:57.729947Z"},"index":5,"created_at":"2021-11-04T13:04:00.088034Z","updated_at":"2021-11-04T13:04:00.088034Z"}],"total_count":5}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:09 GMT + - Thu, 04 Nov 2021 13:04:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -997,12 +1096,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5f2e0c8-0a01-4001-8982-7fb09d9b6dc8 + - 24b8a4c2-fb7f-4ca5-8b86-0cf6a64b33fe status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-test","inbound_port":80,"backend_id":"c4e944c2-f9a9-4e29-94a1-83286a016507","certificate_id":null,"certificate_ids":null,"timeout_client":30000}' + body: '{"name":"tf-test","inbound_port":80,"backend_id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","certificate_id":null,"certificate_ids":null,"timeout_client":30000}' form: {} headers: Content-Type: @@ -1010,19 +1109,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7 method: PUT response: - body: '{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"pending","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:09.916914993Z","region":"fr-par","zone":"fr-par-1"},{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"pending","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:10.009771155Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:09.870658Z"}' + body: '{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"pending","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:04:04.194638015Z","region":"fr-par","zone":"fr-par-1"},{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"pending","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:04:04.275924176Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:04:04.149636Z"}' headers: Content-Length: - - "3022" + - "3023" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:10 GMT + - Thu, 04 Nov 2021 13:04:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1032,7 +1131,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43d8a075-4844-4313-b491-e752a6d93221 + - 22c1bddb-b745-47d3-8272-a66389de55ef status: 200 OK code: 200 duration: "" @@ -1043,17 +1142,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"id":"3105c565-30d1-4679-984d-0bf16a65e21e","name":"test-acl","match":{"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:09.870658Z"},"index":1,"created_at":"2021-10-21T15:23:04.464942Z","updated_at":"2021-10-21T15:23:04.464942Z"},{"id":"b77bb109-e8f9-4dc1-9c86-7cd6a32eccf3","name":"tf-lb-acl-cocky-hodgkin","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:09.870658Z"},"index":2,"created_at":"2021-10-21T15:23:04.851550Z","updated_at":"2021-10-21T15:23:04.851550Z"},{"id":"6a388080-adc2-4a51-a1c8-7489e57c30c7","name":"tf-lb-acl-confident-mclean","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:09.870658Z"},"index":3,"created_at":"2021-10-21T15:23:05.228182Z","updated_at":"2021-10-21T15:23:05.228182Z"},{"id":"259a6dbe-9924-4f92-9e2d-191a3c488e20","name":"tf-lb-acl-goofy-einstein","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:09.870658Z"},"index":4,"created_at":"2021-10-21T15:23:05.586882Z","updated_at":"2021-10-21T15:23:05.586882Z"},{"id":"ff11c8f8-1b6a-4855-bfd6-6aa7c7a3efbe","name":"tf-lb-acl-sleepy-gould","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"deny"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:09.870658Z"},"index":5,"created_at":"2021-10-21T15:23:06.017133Z","updated_at":"2021-10-21T15:23:06.017133Z"}],"total_count":5}' + body: '{"acls":[{"id":"5e31806c-4eff-45aa-a771-c1628b0203fa","name":"test-acl","match":{"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:04:04.149636Z"},"index":1,"created_at":"2021-11-04T13:03:58.545336Z","updated_at":"2021-11-04T13:03:58.545336Z"},{"id":"e9f1db63-543b-4d62-ad37-26b6def3d44a","name":"tf-lb-acl-lucid-bartik","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":true,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:04:04.149636Z"},"index":2,"created_at":"2021-11-04T13:03:58.968105Z","updated_at":"2021-11-04T13:03:58.968105Z"},{"id":"c418c647-7e58-4439-a46d-58537cc2e7dd","name":"tf-lb-acl-brave-gauss","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:04:04.149636Z"},"index":3,"created_at":"2021-11-04T13:03:59.286618Z","updated_at":"2021-11-04T13:03:59.286618Z"},{"id":"48ebf9ac-a74d-4f28-8cf8-2a62a5262515","name":"tf-lb-acl-elastic-rubin","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:04:04.149636Z"},"index":4,"created_at":"2021-11-04T13:03:59.643304Z","updated_at":"2021-11-04T13:03:59.643304Z"},{"id":"ab20d07d-6867-4a98-b6c1-b416ace520b0","name":"tf-lb-acl-angry-meitner","match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"invert":false,"http_filter_option":null},"action":{"type":"deny"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:04:04.149636Z"},"index":5,"created_at":"2021-11-04T13:04:00.088034Z","updated_at":"2021-11-04T13:04:00.088034Z"}],"total_count":5}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:10 GMT + - Thu, 04 Nov 2021 13:04:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1063,7 +1162,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89851882-7735-432c-a4bf-c3d5a7356984 + - d6c7c95a-5db1-4264-998f-6baca1bc85e3 status: 200 OK code: 200 duration: "" @@ -1076,19 +1175,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/3105c565-30d1-4679-984d-0bf16a65e21e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/5e31806c-4eff-45aa-a771-c1628b0203fa method: PUT response: - body: '{"id":"3105c565-30d1-4679-984d-0bf16a65e21e","name":"test-acl","match":{"ip_subnet":["10.0.0.10"],"http_filter":"path_begin","http_filter_value":["foo","bar"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"pending","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:10.542916939Z","region":"fr-par","zone":"fr-par-1"},{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"pending","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:10.622281514Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:09.870658Z"},"index":1,"created_at":"2021-10-21T15:23:04.464942Z","updated_at":"2021-10-21T15:23:10.475536Z"}' + body: '{"id":"5e31806c-4eff-45aa-a771-c1628b0203fa","name":"test-acl","match":{"ip_subnet":["10.0.0.10"],"http_filter":"path_begin","http_filter_value":["foo","bar"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"pending","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:04:04.769891106Z","region":"fr-par","zone":"fr-par-1"},{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"pending","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:04:04.844472794Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:04:04.149636Z"},"index":1,"created_at":"2021-11-04T13:03:58.545336Z","updated_at":"2021-11-04T13:04:04.723918Z"}' headers: Content-Length: - - "3357" + - "3358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:10 GMT + - Thu, 04 Nov 2021 13:04:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1098,7 +1197,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c670efa-fa06-40f9-9a6c-ab56098978e6 + - dd81a5d5-0539-4e08-80be-12efe406cf78 status: 200 OK code: 200 duration: "" @@ -1109,7 +1208,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/6a388080-adc2-4a51-a1c8-7489e57c30c7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/e9f1db63-543b-4d62-ad37-26b6def3d44a method: DELETE response: body: "" @@ -1119,7 +1218,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:11 GMT + - Thu, 04 Nov 2021 13:04:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1129,7 +1228,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1915af6d-eb10-4ad3-9586-61f3b94b4ab0 + - a16c0958-4a87-4275-9f29-0d78411bf0f5 status: 204 No Content code: 204 duration: "" @@ -1140,7 +1239,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/259a6dbe-9924-4f92-9e2d-191a3c488e20 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/c418c647-7e58-4439-a46d-58537cc2e7dd method: DELETE response: body: "" @@ -1150,7 +1249,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:11 GMT + - Thu, 04 Nov 2021 13:04:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1160,7 +1259,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ee96ab1-053c-4730-b98f-76602244224f + - 4bc62173-102d-490a-9703-330c3c2ecc8f status: 204 No Content code: 204 duration: "" @@ -1171,7 +1270,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/ff11c8f8-1b6a-4855-bfd6-6aa7c7a3efbe + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/48ebf9ac-a74d-4f28-8cf8-2a62a5262515 method: DELETE response: body: "" @@ -1181,7 +1280,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:11 GMT + - Thu, 04 Nov 2021 13:04:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1191,7 +1290,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2b40485-2ee6-4734-be50-37ff48640131 + - 0dbf9102-13ca-4e1f-82df-c15a22f1db81 status: 204 No Content code: 204 duration: "" @@ -1202,7 +1301,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/b77bb109-e8f9-4dc1-9c86-7cd6a32eccf3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/ab20d07d-6867-4a98-b6c1-b416ace520b0 method: DELETE response: body: "" @@ -1212,7 +1311,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:11 GMT + - Thu, 04 Nov 2021 13:04:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1222,7 +1321,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5885b86a-a947-4470-908d-c50c765b8283 + - dabbc110-f2d1-4278-8fe7-da4fe457602d status: 204 No Content code: 204 duration: "" @@ -1233,10 +1332,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7 method: GET response: - body: '{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:09.870658Z"}' + body: '{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:04:04.149636Z"}' headers: Content-Length: - "2588" @@ -1245,7 +1344,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:12 GMT + - Thu, 04 Nov 2021 13:04:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1255,7 +1354,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3880248-ca16-4a08-ab30-4ff70e4b7d63 + - 4c03a986-6e04-4870-a35e-cc3aad61b3b0 status: 200 OK code: 200 duration: "" @@ -1266,10 +1365,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"id":"3105c565-30d1-4679-984d-0bf16a65e21e","name":"test-acl","match":{"ip_subnet":["10.0.0.10"],"http_filter":"path_begin","http_filter_value":["foo","bar"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:09.870658Z"},"index":1,"created_at":"2021-10-21T15:23:04.464942Z","updated_at":"2021-10-21T15:23:10.475536Z"}],"total_count":1}' + body: '{"acls":[{"id":"5e31806c-4eff-45aa-a771-c1628b0203fa","name":"test-acl","match":{"ip_subnet":["10.0.0.10"],"http_filter":"path_begin","http_filter_value":["foo","bar"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:04:04.149636Z"},"index":1,"created_at":"2021-11-04T13:03:58.545336Z","updated_at":"2021-11-04T13:04:04.723918Z"}],"total_count":1}' headers: Content-Length: - "2950" @@ -1278,7 +1377,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:12 GMT + - Thu, 04 Nov 2021 13:04:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1288,7 +1387,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7b5c371-ce24-4b84-b0fa-77e01a95562b + - aacfb6a4-ae76-4990-b0d7-69241801c092 status: 200 OK code: 200 duration: "" @@ -1299,10 +1398,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"id":"3105c565-30d1-4679-984d-0bf16a65e21e","name":"test-acl","match":{"ip_subnet":["10.0.0.10"],"http_filter":"path_begin","http_filter_value":["foo","bar"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:09.870658Z"},"index":1,"created_at":"2021-10-21T15:23:04.464942Z","updated_at":"2021-10-21T15:23:10.475536Z"}],"total_count":1}' + body: '{"acls":[{"id":"5e31806c-4eff-45aa-a771-c1628b0203fa","name":"test-acl","match":{"ip_subnet":["10.0.0.10"],"http_filter":"path_begin","http_filter_value":["foo","bar"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:04:04.149636Z"},"index":1,"created_at":"2021-11-04T13:03:58.545336Z","updated_at":"2021-11-04T13:04:04.723918Z"}],"total_count":1}' headers: Content-Length: - "2950" @@ -1311,7 +1410,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:12 GMT + - Thu, 04 Nov 2021 13:04:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1321,7 +1420,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27bd8018-c672-4d2c-b2b3-c09b0bb33849 + - f69e5e2b-89d0-41c0-9601-2aceefcb336e status: 200 OK code: 200 duration: "" @@ -1332,19 +1431,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/5668b5e2-ff42-4ffd-a8e8-260add7c6336 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "312" + - "314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:13 GMT + - Thu, 04 Nov 2021 13:04:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1354,7 +1453,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97e8ca23-0cb0-4e86-bf57-270d311b4b10 + - 68e079f4-6afe-48c1-86b0-7a4dc0ef864c status: 200 OK code: 200 duration: "" @@ -1365,19 +1464,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9cd9103-2b3a-4ccd-b002-0fddc41978a0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b method: GET response: - body: '{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"ready","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:12.190481Z","region":"fr-par","zone":"fr-par-1"},{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"ready","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:12.264182Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"ready","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:04:06.771674Z","region":"fr-par","zone":"fr-par-1"},{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"ready","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:04:06.867001Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1276" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:13 GMT + - Thu, 04 Nov 2021 13:04:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1387,7 +1486,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73fd0486-03d7-402d-9547-cceba18004e9 + - a9031a5e-9fc1-47e9-a4c8-64fcc305474a status: 200 OK code: 200 duration: "" @@ -1398,19 +1497,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c4e944c2-f9a9-4e29-94a1-83286a016507 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"ready","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:12.264182Z","region":"fr-par","zone":"fr-par-1"},{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"ready","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:12.190481Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1914" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:13 GMT + - Thu, 04 Nov 2021 13:04:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1420,7 +1519,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb2241d3-eafa-4a6d-a2a6-49d9eae068c1 + - fa1a80a8-2c40-4c0e-806b-38f96565b96d status: 200 OK code: 200 duration: "" @@ -1431,10 +1530,43 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/b1fb2eb7-de0e-4625-9a26-7d35891847ff method: GET response: - body: '{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:09.870658Z"}' + body: '{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"ready","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:04:06.867001Z","region":"fr-par","zone":"fr-par-1"},{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"ready","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:04:06.771674Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"}' + headers: + Content-Length: + - "1913" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:04:08 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8180a5ce-9abe-4499-97b0-c839ee2b3547 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7 + method: GET + response: + body: '{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:04:04.149636Z"}' headers: Content-Length: - "2588" @@ -1443,7 +1575,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:13 GMT + - Thu, 04 Nov 2021 13:04:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1453,7 +1585,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5089b77b-43ef-4ec4-af72-15bf5a693086 + - 5d418994-5183-4574-bb69-942fcbf60c11 status: 200 OK code: 200 duration: "" @@ -1464,10 +1596,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"id":"3105c565-30d1-4679-984d-0bf16a65e21e","name":"test-acl","match":{"ip_subnet":["10.0.0.10"],"http_filter":"path_begin","http_filter_value":["foo","bar"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:09.870658Z"},"index":1,"created_at":"2021-10-21T15:23:04.464942Z","updated_at":"2021-10-21T15:23:10.475536Z"}],"total_count":1}' + body: '{"acls":[{"id":"5e31806c-4eff-45aa-a771-c1628b0203fa","name":"test-acl","match":{"ip_subnet":["10.0.0.10"],"http_filter":"path_begin","http_filter_value":["foo","bar"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:04:04.149636Z"},"index":1,"created_at":"2021-11-04T13:03:58.545336Z","updated_at":"2021-11-04T13:04:04.723918Z"}],"total_count":1}' headers: Content-Length: - "2950" @@ -1476,7 +1608,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:13 GMT + - Thu, 04 Nov 2021 13:04:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1486,7 +1618,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aeb62778-fc8f-4813-a735-f0a7f0c0749a + - 350b6484-ab52-4d21-bd74-54181f63bfb0 status: 200 OK code: 200 duration: "" @@ -1497,19 +1629,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/5668b5e2-ff42-4ffd-a8e8-260add7c6336 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "312" + - "314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:14 GMT + - Thu, 04 Nov 2021 13:04:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1519,7 +1651,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41ab5e46-a97a-446a-b764-0395819518a9 + - d8d84630-9b29-48e7-ba3e-24a60502bf4a status: 200 OK code: 200 duration: "" @@ -1530,19 +1662,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9cd9103-2b3a-4ccd-b002-0fddc41978a0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b method: GET response: - body: '{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"ready","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:12.190481Z","region":"fr-par","zone":"fr-par-1"},{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"ready","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:12.264182Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"ready","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:04:06.771674Z","region":"fr-par","zone":"fr-par-1"},{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"ready","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:04:06.867001Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1276" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:14 GMT + - Thu, 04 Nov 2021 13:04:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1552,7 +1684,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42a8ef09-e69f-489a-bc24-54666cc5f61f + - 47854f22-5b44-4c92-894e-b894d84e6413 status: 200 OK code: 200 duration: "" @@ -1563,19 +1695,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c4e944c2-f9a9-4e29-94a1-83286a016507 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/b1fb2eb7-de0e-4625-9a26-7d35891847ff method: GET response: - body: '{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"ready","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:12.264182Z","region":"fr-par","zone":"fr-par-1"},{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"ready","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:12.190481Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"}' + body: '{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"ready","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:04:06.867001Z","region":"fr-par","zone":"fr-par-1"},{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"ready","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:04:06.771674Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"}' headers: Content-Length: - - "1914" + - "1913" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:14 GMT + - Thu, 04 Nov 2021 13:04:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1585,7 +1717,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44ddae9e-bcbd-4027-9b21-1e1427ca9fed + - 54f89153-18f8-49bb-98c9-0b64fe1e2677 status: 200 OK code: 200 duration: "" @@ -1596,10 +1728,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7 method: GET response: - body: '{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:09.870658Z"}' + body: '{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:04:04.149636Z"}' headers: Content-Length: - "2588" @@ -1608,7 +1740,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:14 GMT + - Thu, 04 Nov 2021 13:04:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1618,7 +1750,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ebf3fb8-28f2-424e-b3f3-caec43a4be03 + - f27bb587-da54-4e34-bb9c-666aaf302358 status: 200 OK code: 200 duration: "" @@ -1629,10 +1761,43 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b/private-networks?order_by=created_at_asc method: GET response: - body: '{"acls":[{"id":"3105c565-30d1-4679-984d-0bf16a65e21e","name":"test-acl","match":{"ip_subnet":["10.0.0.10"],"http_filter":"path_begin","http_filter_value":["foo","bar"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"379d4d08-a02a-44a0-aee9-b91cb03f8905","name":"tf-test","inbound_port":80,"backend":{"id":"c4e944c2-f9a9-4e29-94a1-83286a016507","name":"tf-lb-bkd-xenodochial-euclid","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-10-21T15:23:03.310976Z","updated_at":"2021-10-21T15:23:03.310976Z"},"lb":{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-10-21T15:23:03.900865Z","updated_at":"2021-10-21T15:23:09.870658Z"},"index":1,"created_at":"2021-10-21T15:23:04.464942Z","updated_at":"2021-10-21T15:23:10.475536Z"}],"total_count":1}' + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:04:08 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 267791c6-3daa-46b3-95bc-ab81ef1e3519 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7/acls?order_by=created_at_asc&page=1 + method: GET + response: + body: '{"acls":[{"id":"5e31806c-4eff-45aa-a771-c1628b0203fa","name":"test-acl","match":{"ip_subnet":["10.0.0.10"],"http_filter":"path_begin","http_filter_value":["foo","bar"],"invert":false,"http_filter_option":null},"action":{"type":"allow"},"frontend":{"id":"73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7","name":"tf-test","inbound_port":80,"backend":{"id":"b1fb2eb7-de0e-4625-9a26-7d35891847ff","name":"tf-lb-bkd-adoring-jepsen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_delay":60000,"check_timeout":30000,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{}},"pool":[],"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"send_proxy_v2":false,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","created_at":"2021-11-04T13:03:57.170309Z","updated_at":"2021-11-04T13:03:57.170309Z"},"lb":{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":1,"backend_count":1,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"timeout_client":30000,"certificate":null,"certificate_ids":[],"created_at":"2021-11-04T13:03:57.729947Z","updated_at":"2021-11-04T13:04:04.149636Z"},"index":1,"created_at":"2021-11-04T13:03:58.545336Z","updated_at":"2021-11-04T13:04:04.723918Z"}],"total_count":1}' headers: Content-Length: - "2950" @@ -1641,7 +1806,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:14 GMT + - Thu, 04 Nov 2021 13:04:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1651,7 +1816,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32f57d90-b447-4721-9f0e-489ef3fd41ef + - b7cd2b07-5355-46f2-838b-f0ddac29cd19 status: 200 OK code: 200 duration: "" @@ -1662,7 +1827,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/379d4d08-a02a-44a0-aee9-b91cb03f8905 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/73b598ff-7d9e-4b2c-bdcd-9d8b156f7ca7 method: DELETE response: body: "" @@ -1672,7 +1837,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:15 GMT + - Thu, 04 Nov 2021 13:04:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1682,7 +1847,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a9de803-26f4-4ee7-8dd0-685ce489481e + - 0ee145d4-33a4-449e-a864-7a0eb2404799 status: 204 No Content code: 204 duration: "" @@ -1693,7 +1858,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c4e944c2-f9a9-4e29-94a1-83286a016507 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/b1fb2eb7-de0e-4625-9a26-7d35891847ff method: DELETE response: body: "" @@ -1703,7 +1868,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:15 GMT + - Thu, 04 Nov 2021 13:04:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1713,7 +1878,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3424158-61f1-4029-a4dc-abadbb4f8a3f + - a4ac5e9f-fd71-4bf5-9727-58484f1a8847 status: 204 No Content code: 204 duration: "" @@ -1724,19 +1889,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9cd9103-2b3a-4ccd-b002-0fddc41978a0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b method: GET response: - body: '{"id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"8b70643a-0110-4031-b66c-a15625856bd4","status":"ready","ip_address":"10.68.12.27","created_at":"2021-10-21T15:14:30.375431Z","updated_at":"2021-10-21T15:23:15.446017Z","region":"fr-par","zone":"fr-par-1"},{"id":"89f4e51e-2f81-43ec-b14e-a7f102812aed","status":"ready","ip_address":"10.73.110.73","created_at":"2021-10-21T14:57:07.240260Z","updated_at":"2021-10-21T15:23:15.516875Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"b9cd9103-2b3a-4ccd-b002-0fddc41978a0","reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T15:23:00.431494Z","updated_at":"2021-10-21T15:23:01.344246Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"ready","instances":[{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"ready","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:04:10.018217Z","region":"fr-par","zone":"fr-par-1"},{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"pending","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:04:09.893716Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:03:27.771061Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1276" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:15 GMT + - Thu, 04 Nov 2021 13:04:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1746,7 +1911,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7be61edb-851a-4a11-bc3e-845e1e8e89d3 + - 36c8b6b6-a058-4e6e-9cdc-bb1a9186700c status: 200 OK code: 200 duration: "" @@ -1757,7 +1922,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9cd9103-2b3a-4ccd-b002-0fddc41978a0?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b?release_ip=false method: DELETE response: body: "" @@ -1767,7 +1932,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:15 GMT + - Thu, 04 Nov 2021 13:04:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1777,7 +1942,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26e65fed-1035-42e9-9011-427fe9667550 + - a3d2e021-c941-4f52-9d13-97dd2ec2aa2b status: 204 No Content code: 204 duration: "" @@ -1788,19 +1953,85 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/5668b5e2-ff42-4ffd-a8e8-260add7c6336 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b + method: GET + response: + body: '{"id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","name":"test-lb-acl","description":"","status":"pending","instances":[{"id":"4fc5d264-1ab7-414a-a731-88b9e45f5d96","status":"ready","ip_address":"10.69.154.29","created_at":"2021-11-04T13:00:59.759833Z","updated_at":"2021-11-04T13:04:10.018217Z","region":"fr-par","zone":"fr-par-1"},{"id":"6cdb33e5-dc6d-47d2-b44c-8e1b0151dda6","status":"ready","ip_address":"10.64.184.63","created_at":"2021-11-04T10:29:00.258717Z","updated_at":"2021-11-04T13:04:10.090763Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"06d37c9a-0d71-4727-a2a2-19ba43856e3b","reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-04T13:03:26.507717Z","updated_at":"2021-11-04T13:04:10.173722Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1281" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:04:10 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b4fcef44-fe2b-4fdf-9f20-7fc7b9d68755 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/06d37c9a-0d71-4727-a2a2-19ba43856e3b + method: GET + response: + body: '{"message":"lbs not Found"}' + headers: + Content-Length: + - "27" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 04 Nov 2021 13:04:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c94a0f7d-a671-4a55-b9b0-c7c4c43fe3a9 + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"5668b5e2-ff42-4ffd-a8e8-260add7c6336","ip_address":"51.159.26.232","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-26-232.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "278" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:16 GMT + - Thu, 04 Nov 2021 13:04:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1810,7 +2041,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81d6ec9f-b0e5-4449-8aa1-d838cb5ae8fe + - 3fb7a001-8bb1-4500-864d-286783904cf4 status: 200 OK code: 200 duration: "" @@ -1821,7 +2052,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/5668b5e2-ff42-4ffd-a8e8-260add7c6336 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: DELETE response: body: "" @@ -1831,7 +2062,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 15:23:17 GMT + - Thu, 04 Nov 2021 13:04:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1841,7 +2072,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d45a695f-6095-47eb-9293-dde06b816271 + - c8861239-1502-42d2-93be-4f620da448c0 status: 204 No Content code: 204 duration: "" diff --git a/scaleway/testdata/lbip-basic.cassette.yaml b/scaleway/testdata/lbip-basic.cassette.yaml index 8d35d2c4e5..3617064148 100644 --- a/scaleway/testdata/lbip-basic.cassette.yaml +++ b/scaleway/testdata/lbip-basic.cassette.yaml @@ -2,27 +2,27 @@ version: 1 interactions: - request: - body: '{"project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","reverse":null}' + body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","reverse":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "276" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:43 GMT + - Thu, 04 Nov 2021 13:09:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11730fd1-e19f-42e1-9778-8856fc5a4585 + - 7cac3898-c2fd-496e-8dc8-bd879cfd74b2 status: 200 OK code: 200 duration: "" @@ -41,21 +41,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "276" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:43 GMT + - Thu, 04 Nov 2021 13:09:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,7 +65,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ac1cb38-8b8b-46e3-a963-2c6682bb382e + - 65b87d8b-d7c7-4d47-8ca0-9d6aee04d6dc status: 200 OK code: 200 duration: "" @@ -74,21 +74,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "276" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:44 GMT + - Thu, 04 Nov 2021 13:09:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -98,7 +98,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25afd8f6-0516-4b58-b3ab-4e656d742d27 + - e06ca11b-23b8-4745-b5f2-4d760522a1ed status: 200 OK code: 200 duration: "" @@ -107,21 +107,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "276" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:44 GMT + - Thu, 04 Nov 2021 13:09:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -131,7 +131,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00ce94f9-f480-4d5c-9544-8875ac727992 + - 344d7ffc-ace9-411a-b2a8-f1059f562de1 status: 200 OK code: 200 duration: "" @@ -140,21 +140,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"51-159-27-99.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"195-154-70-164.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "276" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:45 GMT + - Thu, 04 Nov 2021 13:09:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -164,7 +164,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b8dfddf-c31f-495a-8e34-fe22d72cbb3a + - 9e0c60f2-e200-44d0-afe4-c4accb519f0a status: 200 OK code: 200 duration: "" @@ -175,21 +175,21 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: PATCH response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"myreverse.com","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"myreverse.com","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "257" + - "259" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:46 GMT + - Thu, 04 Nov 2021 13:09:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5594b28-c7a1-47bc-b7d4-96f05bf180b6 + - 7f4f9a3b-3ddf-4eb2-b723-2614797efe8f status: 200 OK code: 200 duration: "" @@ -208,21 +208,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"myreverse.com","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"myreverse.com","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "257" + - "259" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:46 GMT + - Thu, 04 Nov 2021 13:09:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,7 +232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5e9c041-e12f-4728-a067-c88b294e2246 + - 9c6c756b-643c-4942-98c5-bdfcca8e74e2 status: 200 OK code: 200 duration: "" @@ -241,21 +241,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"myreverse.com","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"myreverse.com","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "257" + - "259" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:46 GMT + - Thu, 04 Nov 2021 13:09:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -265,7 +265,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16f6c1d8-4afc-4349-abc6-c3fd079d7cdd + - d09bb75e-2914-43f4-8304-19fbf2dc10b9 status: 200 OK code: 200 duration: "" @@ -274,21 +274,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: - body: '{"id":"cbc61176-87dd-4e12-a7d7-2645a056acb4","ip_address":"51.159.27.99","organization_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","project_id":"b3ba839a-dcf2-4b0a-ac81-fc32370052a0","lb_id":null,"reverse":"myreverse.com","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"a7972715-724c-448c-85b2-640ffc655a09","ip_address":"195.154.70.164","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"myreverse.com","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "257" + - "259" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:47 GMT + - Thu, 04 Nov 2021 13:09:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -298,7 +298,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d758ec8f-a100-43ff-ab97-1ba4f68bf95b + - bc305694-6c93-4b52-856e-32ca81f494b1 status: 200 OK code: 200 duration: "" @@ -307,9 +307,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: DELETE response: body: "" @@ -319,7 +319,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:48 GMT + - Thu, 04 Nov 2021 13:10:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -329,7 +329,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac752887-c806-4035-af62-32deac5cc77b + - 346c0d47-9a65-4a33-92b6-0669d5c34527 status: 204 No Content code: 204 duration: "" @@ -338,9 +338,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cbc61176-87dd-4e12-a7d7-2645a056acb4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/a7972715-724c-448c-85b2-640ffc655a09 method: GET response: body: '{"message":"ips not Found"}' @@ -352,7 +352,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 17 May 2021 12:47:48 GMT + - Thu, 04 Nov 2021 13:10:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -362,7 +362,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96536d29-8c3e-42f4-bfd3-37e73e602253 + - 2212e971-d3dd-4716-aed7-40dee77ae41e status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/lblb-with-ip.cassette.yaml b/scaleway/testdata/lblb-with-ip.cassette.yaml index fbd9735b4e..a24f53607e 100644 --- a/scaleway/testdata/lblb-with-ip.cassette.yaml +++ b/scaleway/testdata/lblb-with-ip.cassette.yaml @@ -8,21 +8,21 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"cfe09c5f-4851-49ed-ace5-9c1a5f788664","ip_address":"51.159.114.171","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-114-171.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "280" + - "276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 13:02:40 GMT + - Mon, 15 Nov 2021 10:06:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,3766 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd2ff3f8-b3e6-440d-a05a-7bac58b7ab72 + - bf988d31-7565-4da8-bf1a-88535bd8a13b + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"test-lb-with-pn-dhcp","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks + method: POST + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"test-lb-with-pn-dhcp","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:06:02.654426Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "298" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cbc8a3f2-4e6d-4dce-97e6-1f7d7f19f0c7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b + method: GET + response: + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "276" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 00a123a9-c912-44f8-805f-7b7a63319250 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: GET + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"test-lb-with-pn-dhcp","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:06:02.654426Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "298" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 44d45fbe-6509-4854-8d5f-6461708abe53 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","name":"test-lb-with-dhcp-1","description":"","ip_id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs + method: POST + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-dhcp-1","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561243Z","updated_at":"2021-11-15T10:06:06.218561243Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "866" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:06 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2a2fda12-cb05-4369-8c27-085149113850 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-dhcp-1","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:06.218561Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "860" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:06 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 155628aa-29be-4594-ac6f-2cbd8678b088 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-dhcp-1","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:06:06.904298Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:06:07.118937Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:07.390750Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1282" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:36 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 44826770-12f3-45b9-be38-66d6364b2077 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"dhcp_config":{}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575/attach + method: POST + response: + body: '{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-dhcp-1","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:06:06.904298Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:06:07.118937Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:07.390750Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"pending","created_at":"2021-11-15T10:06:36.668574507Z","updated_at":"2021-11-15T10:06:36.668574507Z","dhcp_config":{}}' + headers: + Content-Length: + - "1477" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:36 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 02e616a4-eb38-4d3a-9eff-8ba14315bab7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-dhcp-1","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:06:06.904298Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:06:07.118937Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:07.390750Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1282" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6af7abca-efd2-416a-bdd2-3d00e74bfd1b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-dhcp-1","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:06:06.904298Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:06:07.118937Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:07.390750Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1282" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7ea19473-60ed-4ffc-a0a8-7bc511b35596 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-dhcp-1","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:07.390750Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"pending","created_at":"2021-11-15T10:06:36.668575Z","updated_at":"2021-11-15T10:06:36.668575Z","dhcp_config":{}}],"total_count":1}' + headers: + Content-Length: + - "1085" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4da850e4-e8e1-4e02-9e77-e80e88e2475c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-dhcp-1","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:06:06.904298Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:06:07.118937Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:07.390750Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1282" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 71fe6e6b-be4c-4049-85d3-4f72a5e13d7d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b + method: GET + response: + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "310" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 155c418e-4f72-4b26-a481-7c1c30ef4e22 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b + method: GET + response: + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "310" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3f450a8f-5b9a-4391-a1a5-a004a0963901 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: GET + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"test-lb-with-pn-dhcp","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:06:02.654426Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "298" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eb588160-8d2a-4d92-95e6-9c05a89c323c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-dhcp-1","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:06:06.904298Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:06:07.118937Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:07.390750Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1282" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a13f0337-f560-4d30-a5b2-f1c2059f9282 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-dhcp-1","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:07.390750Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"pending","created_at":"2021-11-15T10:06:36.668575Z","updated_at":"2021-11-15T10:06:36.668575Z","dhcp_config":{}}],"total_count":1}' + headers: + Content-Length: + - "1085" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a13841ac-db5b-4d2d-b67c-d2b5898efc7d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b + method: GET + response: + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "310" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b42a48e6-012f-4b2b-a5e2-6920e9889783 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: GET + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"test-lb-with-pn-dhcp","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:06:02.654426Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "298" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c3b0a42e-9c97-42c5-87a4-5892a201a99d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-dhcp-1","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:06:06.904298Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:06:07.118937Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:07.390750Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1282" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 212e2e7e-b9a2-4322-afb2-80e585e3b552 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-dhcp-1","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:07.390750Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"pending","created_at":"2021-11-15T10:06:36.668575Z","updated_at":"2021-11-15T10:06:36.668575Z","dhcp_config":{}}],"total_count":1}' + headers: + Content-Length: + - "1085" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5b842952-75e0-44ba-ac73-dee8da682b03 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"pn-with-lb-static","tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: PATCH + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-static","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:06:39.144371Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "295" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49b64e5c-79fa-4acb-802a-c086210579f6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: GET + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-static","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:06:39.144371Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "295" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 72c9ca6a-9dde-4e74-bae5-3afbfa6c2a77 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-dhcp-1","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:06:06.904298Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:06:07.118937Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:07.390750Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1282" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e0115157-71e8-4883-b02a-369ef60e6de8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"test-lb-with-pn-static-2","description":"","tags":[],"ssl_compatibility_level":"ssl_compatibility_level_unknown"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: PUT + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"pending","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:06:39.459139852Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"pending","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:06:39.528578688Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1297" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1d39579f-fba0-4c16-b23a-072e97f1864c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"pending","created_at":"2021-11-15T10:06:36.668575Z","updated_at":"2021-11-15T10:06:36.668575Z","dhcp_config":{}}],"total_count":1}' + headers: + Content-Length: + - "1090" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:06:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f87e1482-9e17-4758-af37-cc31f7f4a53a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"pending","created_at":"2021-11-15T10:06:36.668575Z","updated_at":"2021-11-15T10:06:36.668575Z","dhcp_config":{}}],"total_count":1}' + headers: + Content-Length: + - "1090" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:07:09 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 43516a3c-c7a6-47b9-8c09-c80919218c01 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"pending","created_at":"2021-11-15T10:06:36.668575Z","updated_at":"2021-11-15T10:06:36.668575Z","dhcp_config":{}}],"total_count":1}' + headers: + Content-Length: + - "1090" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:07:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f5b9ed3d-e435-4c96-9139-cb265fe43c69 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:06:36.668575Z","updated_at":"2021-11-15T10:08:02.412624Z","dhcp_config":{}}],"total_count":1}' + headers: + Content-Length: + - "1088" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:08:10 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f3272cf1-fcf8-498e-8f29-817a906062db + status: 200 OK + code: 200 + duration: "" +- request: + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575/detach + method: POST + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:09:13 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8a83929d-c308-4333-b54c-749cf36f8406 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:06:39.732549Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:06:39.867454Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1287" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:09:13 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 03a258f9-14f1-4958-9f2c-ba8bc0409f5f + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575/attach + method: POST + response: + body: '{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:06:39.732549Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:06:39.867454Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"pending","created_at":"2021-11-15T10:09:13.921090902Z","updated_at":"2021-11-15T10:09:13.921090902Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}' + headers: + Content-Length: + - "1528" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:09:14 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 42f4b3aa-4454-4384-bddc-cd60a75c18db + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"pending","created_at":"2021-11-15T10:06:36.668575Z","updated_at":"2021-11-15T10:09:13.403445Z","dhcp_config":{}},{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"pending","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:13.921091Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}],"total_count":2}' + headers: + Content-Length: + - "2189" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:09:14 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bd387826-78ee-4c8a-acc8-30326c6ee862 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"pending","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:13.921091Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}],"total_count":1}' + headers: + Content-Length: + - "1136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:09:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 17c8cee1-231a-4f2a-96a2-faab48489c3c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}],"total_count":1}' + headers: + Content-Length: + - "1134" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:14 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bce4df8a-5e8e-4392-8b6a-ed6578eb091e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:06:39.732549Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:06:39.867454Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1287" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:14 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 68df100c-d997-4188-9fc1-56ed70339744 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}],"total_count":1}' + headers: + Content-Length: + - "1134" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:14 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 85600b00-5f2a-4872-966c-8a8b3b63f66f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b + method: GET + response: + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "310" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:14 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 94ce3a09-0225-4a19-97ce-c5abfceb75fe + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: GET + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-static","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:06:39.144371Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "295" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 986ada20-9157-4e51-b784-c27bc604538a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b + method: GET + response: + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "310" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3ab615bf-a046-489c-b3ae-8fa6db036c35 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:06:39.732549Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:06:39.867454Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1287" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 913ebe21-f4e8-4479-bb1b-9016093718bc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}],"total_count":1}' + headers: + Content-Length: + - "1134" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1a4e5722-9caf-46bb-bcc5-9dc2793531c3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b + method: GET + response: + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "310" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dec3c72d-f7a3-4804-bea5-d901a01bd946 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: GET + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-static","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:06:39.144371Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "295" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 00a143ad-3eae-429c-b21a-3accc1210c32 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:06:39.732549Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:06:39.867454Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1287" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 33f4c939-e293-4753-90df-bd1053ce85bf + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}],"total_count":1}' + headers: + Content-Length: + - "1134" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9971aba7-aacb-4562-851a-0ad6f0eb12af + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"pn-with-lb-to-add","tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: PATCH + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-to-add","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:10:16.708523Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "295" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b5b08986-65a4-4608-8dd6-951d579fb3b0 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"pn-with-lb-to-add","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks + method: POST + response: + body: '{"id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","name":"pn-with-lb-to-add","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:10:16.707202Z","updated_at":"2021-11-15T10:10:16.707202Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "295" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a1b533ea-e6bb-48c0-b886-e59e10c8869e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: GET + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-to-add","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:10:16.708523Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "295" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0098307c-1de4-4716-8b36-77eee2c93fbd + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102 + method: GET + response: + body: '{"id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","name":"pn-with-lb-to-add","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:10:16.707202Z","updated_at":"2021-11-15T10:10:16.707202Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "295" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 155a2498-e7cb-405d-a05d-9e678a04949d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-pn-static-2","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:06:39.732549Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:06:39.867454Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:06:39.435427Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1287" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6b7e6069-b30c-496e-b1ac-367e54bb23c6 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"test-lb-with-static-to-update-with-two-pn-3","description":"","tags":[],"ssl_compatibility_level":"ssl_compatibility_level_unknown"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: PUT + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"pending","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:10:17.077518001Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"pending","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:10:17.146976598Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1316" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:17 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a0ed02cc-1a93-4908-9b61-32fb1bd1a1b9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}],"total_count":1}' + headers: + Content-Length: + - "1153" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:17 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a8d2c639-ecc4-47ca-aff5-2807c587d8d6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:10:17.305621Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:10:17.334604Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1306" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 90d6b958-5bf0-4ec4-82f3-3a796cbc5357 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"static_config":{"ip_address":["172.16.0.105","172.16.0.106"]}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102/attach + method: POST + response: + body: '{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:10:17.305621Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:10:17.334604Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"pending","created_at":"2021-11-15T10:10:43.464599038Z","updated_at":"2021-11-15T10:10:43.464599038Z","static_config":{"ip_address":["172.16.0.105","172.16.0.106"]}}' + headers: + Content-Length: + - "1547" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8ac3b06f-b43d-4ca0-86c3-31a9f5e95a9a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}},{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"pending","created_at":"2021-11-15T10:10:43.464599Z","updated_at":"2021-11-15T10:10:43.464599Z","static_config":{"ip_address":["172.16.0.105","172.16.0.106"]}}],"total_count":2}' + headers: + Content-Length: + - "2271" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:10:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 005f98e1-91b7-4c49-8da1-5df034c4d81a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}},{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"pending","created_at":"2021-11-15T10:10:43.464599Z","updated_at":"2021-11-15T10:10:43.464599Z","static_config":{"ip_address":["172.16.0.105","172.16.0.106"]}}],"total_count":2}' + headers: + Content-Length: + - "2271" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:11:13 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 961161a6-f774-434e-a96b-cdef2bced074 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}},{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"error","created_at":"2021-11-15T10:10:43.464599Z","updated_at":"2021-11-15T10:11:25.850711Z","static_config":{"ip_address":["172.16.0.105","172.16.0.106"]}}],"total_count":2}' + headers: + Content-Length: + - "2269" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:11:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b7e99655-fc0c-4efc-9dfe-196db576ba43 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:10:17.305621Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:10:17.334604Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1306" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:11:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d329b2ef-1bd7-4ce8-a940-0340865b296a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}},{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"error","created_at":"2021-11-15T10:10:43.464599Z","updated_at":"2021-11-15T10:11:25.850711Z","static_config":{"ip_address":["172.16.0.105","172.16.0.106"]}}],"total_count":2}' + headers: + Content-Length: + - "2269" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:11:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 72164a07-8379-46e8-b8cd-ff3a2e895c30 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: GET + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-to-add","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:10:16.708523Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "295" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:11:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0d4b05ea-e3f6-48e4-8baa-c90f7ec507f3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b + method: GET + response: + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "310" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:11:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 28d398c2-41b1-4105-9bef-630216c50fcd + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102 + method: GET + response: + body: '{"id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","name":"pn-with-lb-to-add","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:10:16.707202Z","updated_at":"2021-11-15T10:10:16.707202Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "295" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:11:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9c809678-7ea5-4c41-828a-d4153f6b2930 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:10:17.305621Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:10:17.334604Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1306" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:11:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9a5e9470-3772-406c-9fc3-6f2b2b350f35 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}},{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"error","created_at":"2021-11-15T10:10:43.464599Z","updated_at":"2021-11-15T10:11:25.850711Z","static_config":{"ip_address":["172.16.0.105","172.16.0.106"]}}],"total_count":2}' + headers: + Content-Length: + - "2269" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:11:44 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c57136da-3a16-4a49-8032-ba34ca3a5995 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: GET + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-to-add","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:10:16.708523Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "295" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:11:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9a3429e7-aaee-4936-9c8b-64617cf100d6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b + method: GET + response: + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "310" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:11:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - de4eea5d-91fa-4da1-8f8e-57f029124d4d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102 + method: GET + response: + body: '{"id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","name":"pn-with-lb-to-add","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:10:16.707202Z","updated_at":"2021-11-15T10:10:16.707202Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "295" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:11:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3a7f1d04-4f6a-45fa-8e4a-35be6633e0d4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:10:17.305621Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:10:17.334604Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1306" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:11:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9c662bac-0ce3-4eef-90b5-d25efce4e0bb + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}},{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"error","created_at":"2021-11-15T10:10:43.464599Z","updated_at":"2021-11-15T10:11:25.850711Z","static_config":{"ip_address":["172.16.0.105","172.16.0.106"]}}],"total_count":2}' + headers: + Content-Length: + - "2269" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:11:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7ff93511-45df-400d-a484-af0890756954 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-3","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:10:17.305621Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:10:17.334604Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:10:17.050422Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1306" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:11:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f12b4be5-4a41-4206-be9f-3e91d93265ea + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"test-lb-with-static-to-update-with-two-pn-4","description":"","tags":[],"ssl_compatibility_level":"ssl_compatibility_level_unknown"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: PUT + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"pending","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:11:46.226905340Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"pending","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:11:46.314851421Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1316" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:11:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 79e0f6df-5a32-400b-a035-76d6eae8cbf3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}},{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"error","created_at":"2021-11-15T10:10:43.464599Z","updated_at":"2021-11-15T10:11:25.850711Z","static_config":{"ip_address":["172.16.0.105","172.16.0.106"]}}],"total_count":2}' + headers: + Content-Length: + - "2269" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:11:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 78d7ac6e-7037-4677-b208-d7853376c317 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102/detach + method: POST + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:12:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b3b9c9c0-0180-4754-a51f-be57da314623 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:11:46.453316Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:11:46.554869Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1306" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:12:19 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2047e25e-222b-4757-a117-5298d7b4aeb2 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"static_config":{"ip_address":["172.16.0.105","172.16.0.107"]}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102/attach + method: POST + response: + body: '{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:11:46.453316Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:11:46.554869Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":3,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"pending","created_at":"2021-11-15T10:12:19.215740840Z","updated_at":"2021-11-15T10:12:19.215740840Z","static_config":{"ip_address":["172.16.0.105","172.16.0.107"]}}' + headers: + Content-Length: + - "1547" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:12:19 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c004cba8-8ec2-4a37-b9d7-155fb9533c34 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":3,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}},{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":3,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"pending","created_at":"2021-11-15T10:10:43.464599Z","updated_at":"2021-11-15T10:12:18.880660Z","static_config":{"ip_address":["172.16.0.105","172.16.0.106"]}},{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":3,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"pending","created_at":"2021-11-15T10:12:19.215741Z","updated_at":"2021-11-15T10:12:19.215741Z","static_config":{"ip_address":["172.16.0.105","172.16.0.107"]}}],"total_count":3}' + headers: + Content-Length: + - "3389" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:12:19 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c74112f1-f485-4946-b85a-64558635c037 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}},{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"pending","created_at":"2021-11-15T10:12:19.215741Z","updated_at":"2021-11-15T10:12:19.215741Z","static_config":{"ip_address":["172.16.0.105","172.16.0.107"]}}],"total_count":2}' + headers: + Content-Length: + - "2271" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:12:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 15b3e233-99d3-4d9c-9670-107811fcab74 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}},{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"error","created_at":"2021-11-15T10:12:19.215741Z","updated_at":"2021-11-15T10:13:03.643740Z","static_config":{"ip_address":["172.16.0.105","172.16.0.107"]}}],"total_count":2}' + headers: + Content-Length: + - "2269" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:19 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9af57dc1-bb86-4cb5-b8b1-ee3402ef536c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:11:46.453316Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:11:46.554869Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1306" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 031f9384-5320-4a91-8e23-b792f43f0b84 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}},{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"error","created_at":"2021-11-15T10:12:19.215741Z","updated_at":"2021-11-15T10:13:03.643740Z","static_config":{"ip_address":["172.16.0.105","172.16.0.107"]}}],"total_count":2}' + headers: + Content-Length: + - "2269" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2dc449b2-1497-4532-8712-077a38077540 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102 + method: GET + response: + body: '{"id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","name":"pn-with-lb-to-add","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:10:16.707202Z","updated_at":"2021-11-15T10:10:16.707202Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "295" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1864181e-8082-4ff6-b95c-7e53cc22473d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: GET + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-to-add","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:10:16.708523Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "295" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e1895f2-d87a-4812-a35e-d152aeb620d5 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b + method: GET + response: + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "310" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c627a8d3-141c-4617-b401-2d70ee95ed83 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:11:46.453316Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:11:46.554869Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1306" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - decc556f-3f79-43cd-bcbf-f3a237da66fb + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}},{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"error","created_at":"2021-11-15T10:12:19.215741Z","updated_at":"2021-11-15T10:13:03.643740Z","static_config":{"ip_address":["172.16.0.105","172.16.0.107"]}}],"total_count":2}' + headers: + Content-Length: + - "2269" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 78cbc7b2-d524-43b7-a1ba-b746bdb37e56 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102 + method: GET + response: + body: '{"id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","name":"pn-with-lb-to-add","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:10:16.707202Z","updated_at":"2021-11-15T10:10:16.707202Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "295" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a3e05d60-5431-42c8-b248-b6c60366772a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: GET + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-to-add","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:10:16.708523Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "295" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9739f519-f1c7-4a08-9ee4-895de8bc9e6b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b + method: GET + response: + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "310" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1266ea41-c670-4ac5-a823-ab30168efd69 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:11:46.453316Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:11:46.554869Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1306" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3cb21d66-abcf-449e-8eb4-ff423f9d1c1e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}},{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"error","created_at":"2021-11-15T10:12:19.215741Z","updated_at":"2021-11-15T10:13:03.643740Z","static_config":{"ip_address":["172.16.0.105","172.16.0.107"]}}],"total_count":2}' + headers: + Content-Length: + - "2269" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eed7fb42-e211-4902-8ac5-e731f4762048 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"pn-with-lb-detached","tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: PATCH + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-detached","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:13:22.062603Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "297" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 41cb5b1c-44a6-496d-9bfe-9116ef3f3314 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"pn-with-lb-detached","tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102 + method: PATCH + response: + body: '{"id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","name":"pn-with-lb-detached","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:10:16.707202Z","updated_at":"2021-11-15T10:13:22.059920Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "297" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c51929ac-671d-4df5-824b-c7ba7bf6b72c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102 + method: GET + response: + body: '{"id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","name":"pn-with-lb-detached","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:10:16.707202Z","updated_at":"2021-11-15T10:13:22.059920Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "297" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f295b965-e046-492c-b8e7-a67027764d12 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: GET + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-detached","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:13:22.062603Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "297" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 729efafd-8831-4dfe-97ce-6f8e337d2f2c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-static-to-update-with-two-pn-4","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:11:46.453316Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:11:46.554869Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:11:46.198139Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1306" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 06fb1a84-1e2e-4ac9-9ca2-860c96d62c71 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"test-lb-with-only-one-pn-is-conserved-5","description":"","tags":[],"ssl_compatibility_level":"ssl_compatibility_level_unknown"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: PUT + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-only-one-pn-is-conserved-5","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"pending","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:13:22.393788780Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"pending","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:13:22.469052611Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:13:22.364440Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1312" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 33bb6d55-c2bb-40b8-b02e-01bb8108f2a3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-only-one-pn-is-conserved-5","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:13:22.364440Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}},{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-only-one-pn-is-conserved-5","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:13:22.364440Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"error","created_at":"2021-11-15T10:12:19.215741Z","updated_at":"2021-11-15T10:13:03.643740Z","static_config":{"ip_address":["172.16.0.105","172.16.0.107"]}}],"total_count":2}' + headers: + Content-Length: + - "2261" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2c2b2e05-bb43-42c7-955e-edf692e0c020 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102/detach + method: POST + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 74527a2e-dfe0-456b-8d74-57f09d4cbe5e + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-only-one-pn-is-conserved-5","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:13:22.364440Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}},{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-only-one-pn-is-conserved-5","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:13:22.364440Z","private_network_count":2,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","status":"pending","created_at":"2021-11-15T10:12:19.215741Z","updated_at":"2021-11-15T10:13:46.028046Z","static_config":{"ip_address":["172.16.0.105","172.16.0.107"]}}],"total_count":2}' + headers: + Content-Length: + - "2263" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:13:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 67ac95f0-4824-46cd-b649-8a5f46e85dd8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-only-one-pn-is-conserved-5","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:13:22.364440Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}],"total_count":1}' + headers: + Content-Length: + - "1149" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:14:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2e39af19-82a3-43c1-832a-505fb5df90ce + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-only-one-pn-is-conserved-5","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:13:22.623628Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:13:22.688246Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:13:22.364440Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1302" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:14:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa2112dc-fdd1-4ba5-b8a7-893e0041a8eb + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-only-one-pn-is-conserved-5","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:13:22.364440Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}],"total_count":1}' + headers: + Content-Length: + - "1149" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:14:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3272f384-fb4e-49ac-83e9-7e71379e7353 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b + method: GET + response: + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "310" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:00 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 223f8354-5de7-409a-821d-8f10e3ad0f9d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: GET + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-detached","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:13:22.062603Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "297" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:00 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e2c278e3-f210-468e-96ec-cab0037d3d20 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102 + method: GET + response: + body: '{"id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","name":"pn-with-lb-detached","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:10:16.707202Z","updated_at":"2021-11-15T10:13:22.059920Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "297" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:00 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5e7c574d-f7ef-4261-aa76-6d0e458c2054 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-only-one-pn-is-conserved-5","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:13:22.623628Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:13:22.688246Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:13:22.364440Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1302" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:00 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5a1d0175-48e7-4c0f-b280-42ea694edc87 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-only-one-pn-is-conserved-5","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:13:22.364440Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}],"total_count":1}' + headers: + Content-Length: + - "1149" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:00 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d1a73d45-e8fd-483b-8f11-0ccca8680d56 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: GET + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-detached","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:13:22.062603Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "297" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:01 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 35f77db0-3634-4354-971e-22891c557ddf + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102 + method: GET + response: + body: '{"id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","name":"pn-with-lb-detached","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:10:16.707202Z","updated_at":"2021-11-15T10:13:22.059920Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "297" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:01 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4495abf9-f632-49f8-9c0f-f1c342ccb670 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b + method: GET + response: + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "310" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:01 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7ba9fb35-bc14-4d32-85c6-f5b88b64b299 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-only-one-pn-is-conserved-5","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:13:22.623628Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:13:22.688246Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:13:22.364440Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1302" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:01 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5fe93f81-5efd-4bdb-9f69-a9a9b618d740 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc + method: GET + response: + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-only-one-pn-is-conserved-5","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:13:22.364440Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}],"total_count":1}' + headers: + Content-Length: + - "1149" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:01 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ad383fb9-a80d-49c8-bf27-b9ba22e19cbc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-only-one-pn-is-conserved-5","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:13:22.623628Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:13:22.688246Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:13:22.364440Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1302" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:01 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 370dc462-5807-4fda-b892-19a25a65bd96 status: 200 OK code: 200 duration: "" @@ -41,21 +3800,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cfe09c5f-4851-49ed-ace5-9c1a5f788664 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks?order_by=created_at_asc method: GET response: - body: '{"id":"cfe09c5f-4851-49ed-ace5-9c1a5f788664","ip_address":"51.159.114.171","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-114-171.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"private_network":[{"lb":{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-only-one-pn-is-conserved-5","description":"","status":"ready","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:13:22.364440Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","status":"error","created_at":"2021-11-15T10:09:13.921091Z","updated_at":"2021-11-15T10:09:56.044159Z","static_config":{"ip_address":["172.16.0.100","172.16.0.101"]}}],"total_count":1}' headers: Content-Length: - - "280" + - "1149" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 13:02:40 GMT + - Mon, 15 Nov 2021 10:15:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,32 +3824,259 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57b0d138-dca4-4ef0-a39d-d455a9dd8579 + - bb00d884-7768-4680-95fa-9e5701bb8b27 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","name":"test-lb","description":"","ip_id":"cfe09c5f-4851-49ed-ace5-9c1a5f788664","tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' + body: '{}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575/detach method: POST response: - body: '{"id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","name":"test-lb","description":"","status":"pending","instances":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cfe09c5f-4851-49ed-ace5-9c1a5f788664","ip_address":"51.159.114.171","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","reverse":"51-159-114-171.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T13:02:40.900766769Z","updated_at":"2021-10-21T13:02:40.900766769Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 53665c24-ed84-432e-a242-1f0df01d9cf7 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-only-one-pn-is-conserved-5","description":"","status":"ready","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:13:22.623628Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:13:22.688246Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:13:22.364440Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1302" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8d3a76e9-40b8-42e6-8447-4d15bca0a86f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb?release_ip=false + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:28 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d32f1236-5457-4fad-81ca-fee352a18fe4 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"id":"9154cf08-a639-4958-bfa3-599802cc17bb","name":"test-lb-with-only-one-pn-is-conserved-5","description":"","status":"pending","instances":[{"id":"64bc195d-8525-489a-bdf1-35b0b6cec5d2","status":"ready","ip_address":"10.68.116.7","created_at":"2021-11-11T22:10:25.780185Z","updated_at":"2021-11-15T10:13:22.623628Z","region":"fr-par","zone":"fr-par-1"},{"id":"8bcd223d-68bf-4b87-849d-e650e1290aea","status":"ready","ip_address":"10.64.184.59","created_at":"2021-11-10T12:15:45.681246Z","updated_at":"2021-11-15T10:13:22.688246Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"9154cf08-a639-4958-bfa3-599802cc17bb","reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-11-15T10:06:06.218561Z","updated_at":"2021-11-15T10:15:28.615213Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1304" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:28 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 07ea5138-23b7-4d2a-a814-68c61abc06ef + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9154cf08-a639-4958-bfa3-599802cc17bb + method: GET + response: + body: '{"message":"lbs not Found"}' + headers: + Content-Length: + - "27" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 634dba96-8707-4295-8737-831bc54e01e4 + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102 + method: GET + response: + body: '{"id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","name":"pn-with-lb-detached","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:10:16.707202Z","updated_at":"2021-11-15T10:13:22.059920Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "297" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c66f3612-05fc-47c2-a642-7ac49a6cb7a5 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 + method: GET + response: + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-detached","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:13:22.062603Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' + headers: + Content-Length: + - "297" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:15:59 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 229c99de-ead8-462e-92d0-5a93351e8c5c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b + method: GET + response: + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "858" + - "276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 13:02:41 GMT + - Mon, 15 Nov 2021 10:15:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +4086,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9942c985-2f58-4cf5-85ad-24716132fbae + - cbf2c15e-4482-46be-9032-67bbc6b6780f status: 200 OK code: 200 duration: "" @@ -109,21 +4095,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/833d7274-a5a7-4f9a-a77d-92c2af53212b + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 method: GET response: - body: '{"id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","name":"test-lb","description":"","status":"pending","instances":[{"id":"95a98509-849e-4150-a8a9-336483d2ec77","status":"unknown","ip_address":"10.68.22.21","created_at":"2021-10-21T12:59:31.325956Z","updated_at":"2021-10-21T13:02:41.084043Z","region":"fr-par","zone":"fr-par-1"},{"id":"94068438-dd4b-43d9-ade4-15d392b8e9cd","status":"unknown","ip_address":"10.71.112.7","created_at":"2021-10-21T12:59:27.500052Z","updated_at":"2021-10-21T13:02:41.087839Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cfe09c5f-4851-49ed-ace5-9c1a5f788664","ip_address":"51.159.114.171","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","reverse":"51-159-114-171.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T13:02:40.900767Z","updated_at":"2021-10-21T13:02:41.101257Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-detached","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:13:22.062603Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' headers: Content-Length: - - "1279" + - "297" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 13:02:41 GMT + - Mon, 15 Nov 2021 10:16:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +4119,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e03b5838-56e7-4c4c-9a82-006c14ed59f5 + - cfc94906-720a-44fc-9bce-2207e04093f1 status: 200 OK code: 200 duration: "" @@ -142,21 +4128,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/833d7274-a5a7-4f9a-a77d-92c2af53212b + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102 method: GET response: - body: '{"id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","name":"test-lb","description":"","status":"ready","instances":[{"id":"95a98509-849e-4150-a8a9-336483d2ec77","status":"ready","ip_address":"10.68.22.21","created_at":"2021-10-21T12:59:31.325956Z","updated_at":"2021-10-21T13:02:41.396153Z","region":"fr-par","zone":"fr-par-1"},{"id":"94068438-dd4b-43d9-ade4-15d392b8e9cd","status":"ready","ip_address":"10.71.112.7","created_at":"2021-10-21T12:59:27.500052Z","updated_at":"2021-10-21T13:02:41.878971Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cfe09c5f-4851-49ed-ace5-9c1a5f788664","ip_address":"51.159.114.171","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","reverse":"51-159-114-171.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T13:02:40.900767Z","updated_at":"2021-10-21T13:02:42.176183Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","name":"pn-with-lb-detached","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:10:16.707202Z","updated_at":"2021-11-15T10:13:22.059920Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' headers: Content-Length: - - "1273" + - "297" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 13:02:43 GMT + - Mon, 15 Nov 2021 10:16:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +4152,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b84a6e7-a394-49c2-ba86-851e5be0ba53 + - d2d15051-635c-4fac-8694-6a60df7bbadf status: 200 OK code: 200 duration: "" @@ -175,21 +4161,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/833d7274-a5a7-4f9a-a77d-92c2af53212b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b method: GET response: - body: '{"id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","name":"test-lb","description":"","status":"ready","instances":[{"id":"95a98509-849e-4150-a8a9-336483d2ec77","status":"ready","ip_address":"10.68.22.21","created_at":"2021-10-21T12:59:31.325956Z","updated_at":"2021-10-21T13:02:41.396153Z","region":"fr-par","zone":"fr-par-1"},{"id":"94068438-dd4b-43d9-ade4-15d392b8e9cd","status":"ready","ip_address":"10.71.112.7","created_at":"2021-10-21T12:59:27.500052Z","updated_at":"2021-10-21T13:02:41.878971Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cfe09c5f-4851-49ed-ace5-9c1a5f788664","ip_address":"51.159.114.171","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","reverse":"51-159-114-171.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T13:02:40.900767Z","updated_at":"2021-10-21T13:02:42.176183Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1273" + - "276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 13:02:43 GMT + - Mon, 15 Nov 2021 10:16:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +4185,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0dc26897-7c27-423b-ab72-5b949113e09a + - 5275acaf-a920-4c4c-8435-9a5e852147ea status: 200 OK code: 200 duration: "" @@ -208,21 +4194,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/833d7274-a5a7-4f9a-a77d-92c2af53212b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b method: GET response: - body: '{"id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","name":"test-lb","description":"","status":"ready","instances":[{"id":"95a98509-849e-4150-a8a9-336483d2ec77","status":"ready","ip_address":"10.68.22.21","created_at":"2021-10-21T12:59:31.325956Z","updated_at":"2021-10-21T13:02:41.396153Z","region":"fr-par","zone":"fr-par-1"},{"id":"94068438-dd4b-43d9-ade4-15d392b8e9cd","status":"ready","ip_address":"10.71.112.7","created_at":"2021-10-21T12:59:27.500052Z","updated_at":"2021-10-21T13:02:41.878971Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cfe09c5f-4851-49ed-ace5-9c1a5f788664","ip_address":"51.159.114.171","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","reverse":"51-159-114-171.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T13:02:40.900767Z","updated_at":"2021-10-21T13:02:42.176183Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1273" + - "276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 13:02:43 GMT + - Mon, 15 Nov 2021 10:16:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,7 +4218,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f5c45ea-3e9d-4545-9312-030c617d34d0 + - a41b9023-e8c7-4259-a97c-7d3938e60cb5 status: 200 OK code: 200 duration: "" @@ -241,21 +4227,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cfe09c5f-4851-49ed-ace5-9c1a5f788664 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b method: GET response: - body: '{"id":"cfe09c5f-4851-49ed-ace5-9c1a5f788664","ip_address":"51.159.114.171","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","reverse":"51-159-114-171.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "314" + - "276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 13:02:43 GMT + - Mon, 15 Nov 2021 10:16:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -265,7 +4251,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcfdacf4-f0d2-462f-83c4-47e56e649964 + - d1557481-497e-4484-a973-8b3ddae26ac7 status: 200 OK code: 200 duration: "" @@ -274,21 +4260,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cfe09c5f-4851-49ed-ace5-9c1a5f788664 + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 method: GET response: - body: '{"id":"cfe09c5f-4851-49ed-ace5-9c1a5f788664","ip_address":"51.159.114.171","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","reverse":"51-159-114-171.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-detached","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:13:22.062603Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' headers: Content-Length: - - "314" + - "297" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 13:02:44 GMT + - Mon, 15 Nov 2021 10:16:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -298,7 +4284,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - befc7fb3-a27b-4cb4-841f-0eec0ae591df + - 498bff23-7a89-46dd-a488-b868374ed7c2 status: 200 OK code: 200 duration: "" @@ -307,21 +4293,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/833d7274-a5a7-4f9a-a77d-92c2af53212b + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102 method: GET response: - body: '{"id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","name":"test-lb","description":"","status":"ready","instances":[{"id":"95a98509-849e-4150-a8a9-336483d2ec77","status":"ready","ip_address":"10.68.22.21","created_at":"2021-10-21T12:59:31.325956Z","updated_at":"2021-10-21T13:02:41.396153Z","region":"fr-par","zone":"fr-par-1"},{"id":"94068438-dd4b-43d9-ade4-15d392b8e9cd","status":"ready","ip_address":"10.71.112.7","created_at":"2021-10-21T12:59:27.500052Z","updated_at":"2021-10-21T13:02:41.878971Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cfe09c5f-4851-49ed-ace5-9c1a5f788664","ip_address":"51.159.114.171","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","reverse":"51-159-114-171.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T13:02:40.900767Z","updated_at":"2021-10-21T13:02:42.176183Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","name":"pn-with-lb-detached","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:10:16.707202Z","updated_at":"2021-11-15T10:13:22.059920Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' headers: Content-Length: - - "1273" + - "297" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 13:02:44 GMT + - Mon, 15 Nov 2021 10:16:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -331,7 +4317,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61e4a1b6-8917-48b1-a960-c9c3514e4d78 + - d6dadfb0-7e51-4123-ba0f-0371dd8e476f status: 200 OK code: 200 duration: "" @@ -340,21 +4326,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cfe09c5f-4851-49ed-ace5-9c1a5f788664 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b method: GET response: - body: '{"id":"cfe09c5f-4851-49ed-ace5-9c1a5f788664","ip_address":"51.159.114.171","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","reverse":"51-159-114-171.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "314" + - "276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 13:02:44 GMT + - Mon, 15 Nov 2021 10:16:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -364,7 +4350,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb9df65e-a5df-454b-b085-95d3e27fe96c + - 98b6546e-dc9d-4f82-bfed-2ca2943e398d status: 200 OK code: 200 duration: "" @@ -373,21 +4359,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/833d7274-a5a7-4f9a-a77d-92c2af53212b + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 method: GET response: - body: '{"id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","name":"test-lb","description":"","status":"ready","instances":[{"id":"95a98509-849e-4150-a8a9-336483d2ec77","status":"ready","ip_address":"10.68.22.21","created_at":"2021-10-21T12:59:31.325956Z","updated_at":"2021-10-21T13:02:41.396153Z","region":"fr-par","zone":"fr-par-1"},{"id":"94068438-dd4b-43d9-ade4-15d392b8e9cd","status":"ready","ip_address":"10.71.112.7","created_at":"2021-10-21T12:59:27.500052Z","updated_at":"2021-10-21T13:02:41.878971Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cfe09c5f-4851-49ed-ace5-9c1a5f788664","ip_address":"51.159.114.171","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","reverse":"51-159-114-171.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T13:02:40.900767Z","updated_at":"2021-10-21T13:02:42.176183Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"6b19decc-7fb9-46f6-b6b3-f1c9f4700575","name":"pn-with-lb-detached","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:06:02.654426Z","updated_at":"2021-11-15T10:13:22.062603Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' headers: Content-Length: - - "1273" + - "297" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 13:02:44 GMT + - Mon, 15 Nov 2021 10:16:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -397,7 +4383,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c174d8c8-54e4-4643-9541-038f1a976949 + - 7b155081-e017-4f1a-a328-616d20f7994f status: 200 OK code: 200 duration: "" @@ -406,21 +4392,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/833d7274-a5a7-4f9a-a77d-92c2af53212b + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102 method: GET response: - body: '{"id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","name":"test-lb","description":"","status":"ready","instances":[{"id":"95a98509-849e-4150-a8a9-336483d2ec77","status":"ready","ip_address":"10.68.22.21","created_at":"2021-10-21T12:59:31.325956Z","updated_at":"2021-10-21T13:02:41.396153Z","region":"fr-par","zone":"fr-par-1"},{"id":"94068438-dd4b-43d9-ade4-15d392b8e9cd","status":"ready","ip_address":"10.71.112.7","created_at":"2021-10-21T12:59:27.500052Z","updated_at":"2021-10-21T13:02:41.878971Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","ip":[{"id":"cfe09c5f-4851-49ed-ace5-9c1a5f788664","ip_address":"51.159.114.171","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","reverse":"51-159-114-171.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2021-10-21T13:02:40.900767Z","updated_at":"2021-10-21T13:02:42.176183Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"477f0f7e-9b01-436a-ad39-1c2c87ed7102","name":"pn-with-lb-detached","tags":[],"organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","created_at":"2021-11-15T10:10:16.707202Z","updated_at":"2021-11-15T10:13:22.059920Z","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","zone":"fr-par-1"}' headers: Content-Length: - - "1273" + - "297" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 13:02:45 GMT + - Mon, 15 Nov 2021 10:16:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -430,7 +4416,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59f5d0d5-c3c9-468c-9dc3-00d5d8f8f783 + - d5f187d0-35b7-4c4a-af1f-b9c3f7706263 status: 200 OK code: 200 duration: "" @@ -439,9 +4425,40 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/477f0f7e-9b01-436a-ad39-1c2c87ed7102 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 15 Nov 2021 10:16:04 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7e5e4fad-f175-4a05-9a5b-be7c33a3ec9f + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/833d7274-a5a7-4f9a-a77d-92c2af53212b?release_ip=true + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6b19decc-7fb9-46f6-b6b3-f1c9f4700575 method: DELETE response: body: "" @@ -451,7 +4468,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 21 Oct 2021 13:02:45 GMT + - Mon, 15 Nov 2021 10:16:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -461,7 +4478,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 533381ae-bddf-4a53-b3ca-919864c2192b + - bb1b66cf-043d-4a9c-8a00-60ee1ae2d232 status: 204 No Content code: 204 duration: "" @@ -470,21 +4487,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cfe09c5f-4851-49ed-ace5-9c1a5f788664 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b method: GET response: - body: '{"id":"cfe09c5f-4851-49ed-ace5-9c1a5f788664","ip_address":"51.159.114.171","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":"833d7274-a5a7-4f9a-a77d-92c2af53212b","reverse":"51-159-114-171.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "314" + - "276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 13:02:45 GMT + - Mon, 15 Nov 2021 10:16:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -494,7 +4511,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa8a1856-053b-4034-a4ab-e8fda6b8e347 + - ace225af-5b4d-44ae-bbf6-58a14da7c4f5 status: 200 OK code: 200 duration: "" @@ -503,21 +4520,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cfe09c5f-4851-49ed-ace5-9c1a5f788664 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b method: GET response: - body: '{"id":"cfe09c5f-4851-49ed-ace5-9c1a5f788664","ip_address":"51.159.114.171","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-114-171.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"bac7f54a-cc43-446b-adb6-415ad892fe1b","ip_address":"51.159.9.187","organization_id":"63a66ec9-a385-4194-bc15-04aa6921274a","project_id":"63a66ec9-a385-4194-bc15-04aa6921274a","lb_id":null,"reverse":"51-159-9-187.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "280" + - "276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 13:02:45 GMT + - Mon, 15 Nov 2021 10:16:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -527,7 +4544,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 970f5015-fdf2-4f5c-a736-0ac546cfe767 + - 9f8291da-a40e-498d-b036-787f7e24ab35 status: 200 OK code: 200 duration: "" @@ -536,21 +4553,19 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.1; darwin; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.17.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cfe09c5f-4851-49ed-ace5-9c1a5f788664 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/bac7f54a-cc43-446b-adb6-415ad892fe1b method: DELETE response: - body: '{"message":"ips not Found"}' + body: "" headers: - Content-Length: - - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 21 Oct 2021 13:02:46 GMT + - Mon, 15 Nov 2021 10:16:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -560,7 +4575,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9843eac-57c0-4b4e-9ba8-af38f079c498 - status: 404 Not Found - code: 404 + - c6e056ec-057e-47e9-ad82-7a7121b69db9 + status: 204 No Content + code: 204 duration: ""