published on Monday, Mar 9, 2026 by pulumiverse
published on Monday, Mar 9, 2026 by pulumiverse
Creates and manages Scaleway Edge Services Backend Stages.
Example Usage
With object backend
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const main = new scaleway.object.Bucket("main", {
name: "my-bucket-name",
tags: {
foo: "bar",
},
});
const mainPipeline = new scaleway.edgeservices.Pipeline("main", {name: "my-pipeline"});
const mainBackendStage = new scaleway.edgeservices.BackendStage("main", {
pipelineId: mainPipeline.id,
s3BackendConfig: {
bucketName: main.name,
bucketRegion: "fr-par",
},
});
import pulumi
import pulumiverse_scaleway as scaleway
main = scaleway.object.Bucket("main",
name="my-bucket-name",
tags={
"foo": "bar",
})
main_pipeline = scaleway.edgeservices.Pipeline("main", name="my-pipeline")
main_backend_stage = scaleway.edgeservices.BackendStage("main",
pipeline_id=main_pipeline.id,
s3_backend_config={
"bucket_name": main.name,
"bucket_region": "fr-par",
})
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/edgeservices"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/object"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
main, err := object.NewBucket(ctx, "main", &object.BucketArgs{
Name: pulumi.String("my-bucket-name"),
Tags: pulumi.StringMap{
"foo": pulumi.String("bar"),
},
})
if err != nil {
return err
}
mainPipeline, err := edgeservices.NewPipeline(ctx, "main", &edgeservices.PipelineArgs{
Name: pulumi.String("my-pipeline"),
})
if err != nil {
return err
}
_, err = edgeservices.NewBackendStage(ctx, "main", &edgeservices.BackendStageArgs{
PipelineId: mainPipeline.ID(),
S3BackendConfig: &edgeservices.BackendStageS3BackendConfigArgs{
BucketName: main.Name,
BucketRegion: pulumi.String("fr-par"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var main = new Scaleway.Object.Bucket("main", new()
{
Name = "my-bucket-name",
Tags =
{
{ "foo", "bar" },
},
});
var mainPipeline = new Scaleway.Edgeservices.Pipeline("main", new()
{
Name = "my-pipeline",
});
var mainBackendStage = new Scaleway.Edgeservices.BackendStage("main", new()
{
PipelineId = mainPipeline.Id,
S3BackendConfig = new Scaleway.Edgeservices.Inputs.BackendStageS3BackendConfigArgs
{
BucketName = main.Name,
BucketRegion = "fr-par",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.object.Bucket;
import com.pulumi.scaleway.object.BucketArgs;
import com.pulumi.scaleway.edgeservices.Pipeline;
import com.pulumi.scaleway.edgeservices.PipelineArgs;
import com.pulumi.scaleway.edgeservices.BackendStage;
import com.pulumi.scaleway.edgeservices.BackendStageArgs;
import com.pulumi.scaleway.edgeservices.inputs.BackendStageS3BackendConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var main = new Bucket("main", BucketArgs.builder()
.name("my-bucket-name")
.tags(Map.of("foo", "bar"))
.build());
var mainPipeline = new Pipeline("mainPipeline", PipelineArgs.builder()
.name("my-pipeline")
.build());
var mainBackendStage = new BackendStage("mainBackendStage", BackendStageArgs.builder()
.pipelineId(mainPipeline.id())
.s3BackendConfig(BackendStageS3BackendConfigArgs.builder()
.bucketName(main.name())
.bucketRegion("fr-par")
.build())
.build());
}
}
resources:
main:
type: scaleway:object:Bucket
properties:
name: my-bucket-name
tags:
foo: bar
mainPipeline:
type: scaleway:edgeservices:Pipeline
name: main
properties:
name: my-pipeline
mainBackendStage:
type: scaleway:edgeservices:BackendStage
name: main
properties:
pipelineId: ${mainPipeline.id}
s3BackendConfig:
bucketName: ${main.name}
bucketRegion: fr-par
With LB backend
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const main = new scaleway.loadbalancers.LoadBalancer("main", {
ipIds: [mainScalewayLbIp.id],
zone: "fr-par-1",
type: "LB-S",
});
const mainFrontend = new scaleway.loadbalancers.Frontend("main", {
lbId: main.id,
backendId: mainScalewayLbBackend.id,
name: "frontend01",
inboundPort: 443,
certificateIds: [cert01.id],
});
const mainPipeline = new scaleway.edgeservices.Pipeline("main", {name: "my-pipeline"});
const mainBackendStage = new scaleway.edgeservices.BackendStage("main", {
pipelineId: mainPipeline.id,
lbBackendConfigs: [{
lbConfig: {
id: main.id,
frontendId: id,
isSsl: true,
zone: "fr-par-1",
},
}],
});
import pulumi
import pulumiverse_scaleway as scaleway
main = scaleway.loadbalancers.LoadBalancer("main",
ip_ids=[main_scaleway_lb_ip["id"]],
zone="fr-par-1",
type="LB-S")
main_frontend = scaleway.loadbalancers.Frontend("main",
lb_id=main.id,
backend_id=main_scaleway_lb_backend["id"],
name="frontend01",
inbound_port=443,
certificate_ids=[cert01["id"]])
main_pipeline = scaleway.edgeservices.Pipeline("main", name="my-pipeline")
main_backend_stage = scaleway.edgeservices.BackendStage("main",
pipeline_id=main_pipeline.id,
lb_backend_configs=[{
"lb_config": {
"id": main.id,
"frontend_id": id,
"is_ssl": True,
"zone": "fr-par-1",
},
}])
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/edgeservices"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/loadbalancers"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
main, err := loadbalancers.NewLoadBalancer(ctx, "main", &loadbalancers.LoadBalancerArgs{
IpIds: pulumi.StringArray{
mainScalewayLbIp.Id,
},
Zone: pulumi.String("fr-par-1"),
Type: pulumi.String("LB-S"),
})
if err != nil {
return err
}
_, err = loadbalancers.NewFrontend(ctx, "main", &loadbalancers.FrontendArgs{
LbId: main.ID(),
BackendId: pulumi.Any(mainScalewayLbBackend.Id),
Name: pulumi.String("frontend01"),
InboundPort: pulumi.Int(443),
CertificateIds: pulumi.StringArray{
cert01.Id,
},
})
if err != nil {
return err
}
mainPipeline, err := edgeservices.NewPipeline(ctx, "main", &edgeservices.PipelineArgs{
Name: pulumi.String("my-pipeline"),
})
if err != nil {
return err
}
_, err = edgeservices.NewBackendStage(ctx, "main", &edgeservices.BackendStageArgs{
PipelineId: mainPipeline.ID(),
LbBackendConfigs: edgeservices.BackendStageLbBackendConfigArray{
&edgeservices.BackendStageLbBackendConfigArgs{
LbConfig: &edgeservices.BackendStageLbBackendConfigLbConfigArgs{
Id: main.ID(),
FrontendId: pulumi.Any(id),
IsSsl: pulumi.Bool(true),
Zone: pulumi.String("fr-par-1"),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var main = new Scaleway.Loadbalancers.LoadBalancer("main", new()
{
IpIds = new[]
{
mainScalewayLbIp.Id,
},
Zone = "fr-par-1",
Type = "LB-S",
});
var mainFrontend = new Scaleway.Loadbalancers.Frontend("main", new()
{
LbId = main.Id,
BackendId = mainScalewayLbBackend.Id,
Name = "frontend01",
InboundPort = 443,
CertificateIds = new[]
{
cert01.Id,
},
});
var mainPipeline = new Scaleway.Edgeservices.Pipeline("main", new()
{
Name = "my-pipeline",
});
var mainBackendStage = new Scaleway.Edgeservices.BackendStage("main", new()
{
PipelineId = mainPipeline.Id,
LbBackendConfigs = new[]
{
new Scaleway.Edgeservices.Inputs.BackendStageLbBackendConfigArgs
{
LbConfig = new Scaleway.Edgeservices.Inputs.BackendStageLbBackendConfigLbConfigArgs
{
Id = main.Id,
FrontendId = id,
IsSsl = true,
Zone = "fr-par-1",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.loadbalancers.LoadBalancer;
import com.pulumi.scaleway.loadbalancers.LoadBalancerArgs;
import com.pulumi.scaleway.loadbalancers.Frontend;
import com.pulumi.scaleway.loadbalancers.FrontendArgs;
import com.pulumi.scaleway.edgeservices.Pipeline;
import com.pulumi.scaleway.edgeservices.PipelineArgs;
import com.pulumi.scaleway.edgeservices.BackendStage;
import com.pulumi.scaleway.edgeservices.BackendStageArgs;
import com.pulumi.scaleway.edgeservices.inputs.BackendStageLbBackendConfigArgs;
import com.pulumi.scaleway.edgeservices.inputs.BackendStageLbBackendConfigLbConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var main = new LoadBalancer("main", LoadBalancerArgs.builder()
.ipIds(mainScalewayLbIp.id())
.zone("fr-par-1")
.type("LB-S")
.build());
var mainFrontend = new Frontend("mainFrontend", FrontendArgs.builder()
.lbId(main.id())
.backendId(mainScalewayLbBackend.id())
.name("frontend01")
.inboundPort(443)
.certificateIds(cert01.id())
.build());
var mainPipeline = new Pipeline("mainPipeline", PipelineArgs.builder()
.name("my-pipeline")
.build());
var mainBackendStage = new BackendStage("mainBackendStage", BackendStageArgs.builder()
.pipelineId(mainPipeline.id())
.lbBackendConfigs(BackendStageLbBackendConfigArgs.builder()
.lbConfig(BackendStageLbBackendConfigLbConfigArgs.builder()
.id(main.id())
.frontendId(id)
.isSsl(true)
.zone("fr-par-1")
.build())
.build())
.build());
}
}
resources:
main:
type: scaleway:loadbalancers:LoadBalancer
properties:
ipIds:
- ${mainScalewayLbIp.id}
zone: fr-par-1
type: LB-S
mainFrontend:
type: scaleway:loadbalancers:Frontend
name: main
properties:
lbId: ${main.id}
backendId: ${mainScalewayLbBackend.id}
name: frontend01
inboundPort: '443'
certificateIds:
- ${cert01.id}
mainPipeline:
type: scaleway:edgeservices:Pipeline
name: main
properties:
name: my-pipeline
mainBackendStage:
type: scaleway:edgeservices:BackendStage
name: main
properties:
pipelineId: ${mainPipeline.id}
lbBackendConfigs:
- lbConfig:
id: ${main.id}
frontendId: ${id}
isSsl: true
zone: fr-par-1
Create EdgeServicesBackendStage Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EdgeServicesBackendStage(name: string, args: EdgeServicesBackendStageArgs, opts?: CustomResourceOptions);@overload
def EdgeServicesBackendStage(resource_name: str,
args: EdgeServicesBackendStageArgs,
opts: Optional[ResourceOptions] = None)
@overload
def EdgeServicesBackendStage(resource_name: str,
opts: Optional[ResourceOptions] = None,
lb_backend_configs: Optional[Sequence[EdgeServicesBackendStageLbBackendConfigArgs]] = None,
pipeline_id: Optional[str] = None,
project_id: Optional[str] = None,
s3_backend_config: Optional[EdgeServicesBackendStageS3BackendConfigArgs] = None)func NewEdgeServicesBackendStage(ctx *Context, name string, args EdgeServicesBackendStageArgs, opts ...ResourceOption) (*EdgeServicesBackendStage, error)public EdgeServicesBackendStage(string name, EdgeServicesBackendStageArgs args, CustomResourceOptions? opts = null)
public EdgeServicesBackendStage(String name, EdgeServicesBackendStageArgs args)
public EdgeServicesBackendStage(String name, EdgeServicesBackendStageArgs args, CustomResourceOptions options)
type: scaleway:EdgeServicesBackendStage
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args EdgeServicesBackendStageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args EdgeServicesBackendStageArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args EdgeServicesBackendStageArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EdgeServicesBackendStageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EdgeServicesBackendStageArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
EdgeServicesBackendStage Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The EdgeServicesBackendStage resource accepts the following input properties:
- Pipeline
Id string - The ID of the pipeline.
- Lb
Backend List<Pulumiverse.Configs Scaleway. Inputs. Edge Services Backend Stage Lb Backend Config> - The Scaleway Load Balancer linked to the backend stage.
- Project
Id string project_id) The ID of the project the backend stage is associated with.- S3Backend
Config Pulumiverse.Scaleway. Inputs. Edge Services Backend Stage S3Backend Config - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- Pipeline
Id string - The ID of the pipeline.
- Lb
Backend []EdgeConfigs Services Backend Stage Lb Backend Config Args - The Scaleway Load Balancer linked to the backend stage.
- Project
Id string project_id) The ID of the project the backend stage is associated with.- S3Backend
Config EdgeServices Backend Stage S3Backend Config Args - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- pipeline
Id String - The ID of the pipeline.
- lb
Backend List<EdgeConfigs Services Backend Stage Lb Backend Config> - The Scaleway Load Balancer linked to the backend stage.
- project
Id String project_id) The ID of the project the backend stage is associated with.- s3Backend
Config EdgeServices Backend Stage S3Backend Config - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- pipeline
Id string - The ID of the pipeline.
- lb
Backend EdgeConfigs Services Backend Stage Lb Backend Config[] - The Scaleway Load Balancer linked to the backend stage.
- project
Id string project_id) The ID of the project the backend stage is associated with.- s3Backend
Config EdgeServices Backend Stage S3Backend Config - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- pipeline_
id str - The ID of the pipeline.
- lb_
backend_ Sequence[Edgeconfigs Services Backend Stage Lb Backend Config Args] - The Scaleway Load Balancer linked to the backend stage.
- project_
id str project_id) The ID of the project the backend stage is associated with.- s3_
backend_ Edgeconfig Services Backend Stage S3Backend Config Args - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- pipeline
Id String - The ID of the pipeline.
- lb
Backend List<Property Map>Configs - The Scaleway Load Balancer linked to the backend stage.
- project
Id String project_id) The ID of the project the backend stage is associated with.- s3Backend
Config Property Map - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
Outputs
All input properties are implicitly available as output properties. Additionally, the EdgeServicesBackendStage resource produces the following output properties:
- created_
at str - The date and time of the creation of the backend stage.
- id str
- The provider-assigned unique ID for this managed resource.
- updated_
at str - The date and time of the last update of the backend stage.
Look up Existing EdgeServicesBackendStage Resource
Get an existing EdgeServicesBackendStage resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: EdgeServicesBackendStageState, opts?: CustomResourceOptions): EdgeServicesBackendStage@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_at: Optional[str] = None,
lb_backend_configs: Optional[Sequence[EdgeServicesBackendStageLbBackendConfigArgs]] = None,
pipeline_id: Optional[str] = None,
project_id: Optional[str] = None,
s3_backend_config: Optional[EdgeServicesBackendStageS3BackendConfigArgs] = None,
updated_at: Optional[str] = None) -> EdgeServicesBackendStagefunc GetEdgeServicesBackendStage(ctx *Context, name string, id IDInput, state *EdgeServicesBackendStageState, opts ...ResourceOption) (*EdgeServicesBackendStage, error)public static EdgeServicesBackendStage Get(string name, Input<string> id, EdgeServicesBackendStageState? state, CustomResourceOptions? opts = null)public static EdgeServicesBackendStage get(String name, Output<String> id, EdgeServicesBackendStageState state, CustomResourceOptions options)resources: _: type: scaleway:EdgeServicesBackendStage get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Created
At string - The date and time of the creation of the backend stage.
- Lb
Backend List<Pulumiverse.Configs Scaleway. Inputs. Edge Services Backend Stage Lb Backend Config> - The Scaleway Load Balancer linked to the backend stage.
- Pipeline
Id string - The ID of the pipeline.
- Project
Id string project_id) The ID of the project the backend stage is associated with.- S3Backend
Config Pulumiverse.Scaleway. Inputs. Edge Services Backend Stage S3Backend Config - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- Updated
At string - The date and time of the last update of the backend stage.
- Created
At string - The date and time of the creation of the backend stage.
- Lb
Backend []EdgeConfigs Services Backend Stage Lb Backend Config Args - The Scaleway Load Balancer linked to the backend stage.
- Pipeline
Id string - The ID of the pipeline.
- Project
Id string project_id) The ID of the project the backend stage is associated with.- S3Backend
Config EdgeServices Backend Stage S3Backend Config Args - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- Updated
At string - The date and time of the last update of the backend stage.
- created
At String - The date and time of the creation of the backend stage.
- lb
Backend List<EdgeConfigs Services Backend Stage Lb Backend Config> - The Scaleway Load Balancer linked to the backend stage.
- pipeline
Id String - The ID of the pipeline.
- project
Id String project_id) The ID of the project the backend stage is associated with.- s3Backend
Config EdgeServices Backend Stage S3Backend Config - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- updated
At String - The date and time of the last update of the backend stage.
- created
At string - The date and time of the creation of the backend stage.
- lb
Backend EdgeConfigs Services Backend Stage Lb Backend Config[] - The Scaleway Load Balancer linked to the backend stage.
- pipeline
Id string - The ID of the pipeline.
- project
Id string project_id) The ID of the project the backend stage is associated with.- s3Backend
Config EdgeServices Backend Stage S3Backend Config - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- updated
At string - The date and time of the last update of the backend stage.
- created_
at str - The date and time of the creation of the backend stage.
- lb_
backend_ Sequence[Edgeconfigs Services Backend Stage Lb Backend Config Args] - The Scaleway Load Balancer linked to the backend stage.
- pipeline_
id str - The ID of the pipeline.
- project_
id str project_id) The ID of the project the backend stage is associated with.- s3_
backend_ Edgeconfig Services Backend Stage S3Backend Config Args - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- updated_
at str - The date and time of the last update of the backend stage.
- created
At String - The date and time of the creation of the backend stage.
- lb
Backend List<Property Map>Configs - The Scaleway Load Balancer linked to the backend stage.
- pipeline
Id String - The ID of the pipeline.
- project
Id String project_id) The ID of the project the backend stage is associated with.- s3Backend
Config Property Map - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- updated
At String - The date and time of the last update of the backend stage.
Supporting Types
EdgeServicesBackendStageLbBackendConfig, EdgeServicesBackendStageLbBackendConfigArgs
- Lb
Config Pulumiverse.Scaleway. Inputs. Edge Services Backend Stage Lb Backend Config Lb Config - The Load Balancer config.
- Lb
Config EdgeServices Backend Stage Lb Backend Config Lb Config - The Load Balancer config.
- lb
Config EdgeServices Backend Stage Lb Backend Config Lb Config - The Load Balancer config.
- lb
Config EdgeServices Backend Stage Lb Backend Config Lb Config - The Load Balancer config.
- lb_
config EdgeServices Backend Stage Lb Backend Config Lb Config - The Load Balancer config.
- lb
Config Property Map - The Load Balancer config.
EdgeServicesBackendStageLbBackendConfigLbConfig, EdgeServicesBackendStageLbBackendConfigLbConfigArgs
- Domain
Name string - The Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
- Frontend
Id string - The ID of the frontend.
- Has
Websocket bool - Defines whether to forward websocket requests to the load balancer.
- Id string
- The ID of the Load Balancer.
- Is
Ssl bool - Defines whether the Load Balancer's frontend handles SSL connections.
- Zone string
zone) The zone of the Load Balancer.
- Domain
Name string - The Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
- Frontend
Id string - The ID of the frontend.
- Has
Websocket bool - Defines whether to forward websocket requests to the load balancer.
- Id string
- The ID of the Load Balancer.
- Is
Ssl bool - Defines whether the Load Balancer's frontend handles SSL connections.
- Zone string
zone) The zone of the Load Balancer.
- domain
Name String - The Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
- frontend
Id String - The ID of the frontend.
- has
Websocket Boolean - Defines whether to forward websocket requests to the load balancer.
- id String
- The ID of the Load Balancer.
- is
Ssl Boolean - Defines whether the Load Balancer's frontend handles SSL connections.
- zone String
zone) The zone of the Load Balancer.
- domain
Name string - The Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
- frontend
Id string - The ID of the frontend.
- has
Websocket boolean - Defines whether to forward websocket requests to the load balancer.
- id string
- The ID of the Load Balancer.
- is
Ssl boolean - Defines whether the Load Balancer's frontend handles SSL connections.
- zone string
zone) The zone of the Load Balancer.
- domain_
name str - The Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
- frontend_
id str - The ID of the frontend.
- has_
websocket bool - Defines whether to forward websocket requests to the load balancer.
- id str
- The ID of the Load Balancer.
- is_
ssl bool - Defines whether the Load Balancer's frontend handles SSL connections.
- zone str
zone) The zone of the Load Balancer.
- domain
Name String - The Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
- frontend
Id String - The ID of the frontend.
- has
Websocket Boolean - Defines whether to forward websocket requests to the load balancer.
- id String
- The ID of the Load Balancer.
- is
Ssl Boolean - Defines whether the Load Balancer's frontend handles SSL connections.
- zone String
zone) The zone of the Load Balancer.
EdgeServicesBackendStageS3BackendConfig, EdgeServicesBackendStageS3BackendConfigArgs
- Bucket
Name string - The name of the Bucket.
- Bucket
Region string - The region of the Bucket.
- Is
Website bool - Defines whether the bucket website feature is enabled.
- Bucket
Name string - The name of the Bucket.
- Bucket
Region string - The region of the Bucket.
- Is
Website bool - Defines whether the bucket website feature is enabled.
- bucket
Name String - The name of the Bucket.
- bucket
Region String - The region of the Bucket.
- is
Website Boolean - Defines whether the bucket website feature is enabled.
- bucket
Name string - The name of the Bucket.
- bucket
Region string - The region of the Bucket.
- is
Website boolean - Defines whether the bucket website feature is enabled.
- bucket_
name str - The name of the Bucket.
- bucket_
region str - The region of the Bucket.
- is_
website bool - Defines whether the bucket website feature is enabled.
- bucket
Name String - The name of the Bucket.
- bucket
Region String - The region of the Bucket.
- is
Website Boolean - Defines whether the bucket website feature is enabled.
Import
Backend stages can be imported using the {id}, e.g.
bash
$ pulumi import scaleway:index/edgeServicesBackendStage:EdgeServicesBackendStage basic 11111111-1111-1111-1111-111111111111
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- scaleway pulumiverse/pulumi-scaleway
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scalewayTerraform Provider.
published on Monday, Mar 9, 2026 by pulumiverse
