1. Packages
  2. Scaleway
  3. API Docs
  4. edgeservices
  5. BackendStage
Scaleway v1.41.1 published on Monday, Jan 12, 2026 by pulumiverse
scaleway logo
Scaleway v1.41.1 published on Monday, Jan 12, 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 BackendStage Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new BackendStage(name: string, args: BackendStageArgs, opts?: CustomResourceOptions);
    @overload
    def BackendStage(resource_name: str,
                     args: BackendStageArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def BackendStage(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     pipeline_id: Optional[str] = None,
                     lb_backend_configs: Optional[Sequence[BackendStageLbBackendConfigArgs]] = None,
                     project_id: Optional[str] = None,
                     s3_backend_config: Optional[BackendStageS3BackendConfigArgs] = None)
    func NewBackendStage(ctx *Context, name string, args BackendStageArgs, opts ...ResourceOption) (*BackendStage, error)
    public BackendStage(string name, BackendStageArgs args, CustomResourceOptions? opts = null)
    public BackendStage(String name, BackendStageArgs args)
    public BackendStage(String name, BackendStageArgs args, CustomResourceOptions options)
    
    type: scaleway:edgeservices:BackendStage
    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 BackendStageArgs
    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 BackendStageArgs
    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 BackendStageArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BackendStageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BackendStageArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var backendStageResource = new Scaleway.Edgeservices.BackendStage("backendStageResource", new()
    {
        PipelineId = "string",
        LbBackendConfigs = new[]
        {
            new Scaleway.Edgeservices.Inputs.BackendStageLbBackendConfigArgs
            {
                LbConfig = new Scaleway.Edgeservices.Inputs.BackendStageLbBackendConfigLbConfigArgs
                {
                    DomainName = "string",
                    FrontendId = "string",
                    Id = "string",
                    IsSsl = false,
                    Zone = "string",
                },
            },
        },
        ProjectId = "string",
        S3BackendConfig = new Scaleway.Edgeservices.Inputs.BackendStageS3BackendConfigArgs
        {
            BucketName = "string",
            BucketRegion = "string",
            IsWebsite = false,
        },
    });
    
    example, err := edgeservices.NewBackendStage(ctx, "backendStageResource", &edgeservices.BackendStageArgs{
    	PipelineId: pulumi.String("string"),
    	LbBackendConfigs: edgeservices.BackendStageLbBackendConfigArray{
    		&edgeservices.BackendStageLbBackendConfigArgs{
    			LbConfig: &edgeservices.BackendStageLbBackendConfigLbConfigArgs{
    				DomainName: pulumi.String("string"),
    				FrontendId: pulumi.String("string"),
    				Id:         pulumi.String("string"),
    				IsSsl:      pulumi.Bool(false),
    				Zone:       pulumi.String("string"),
    			},
    		},
    	},
    	ProjectId: pulumi.String("string"),
    	S3BackendConfig: &edgeservices.BackendStageS3BackendConfigArgs{
    		BucketName:   pulumi.String("string"),
    		BucketRegion: pulumi.String("string"),
    		IsWebsite:    pulumi.Bool(false),
    	},
    })
    
    var backendStageResource = new BackendStage("backendStageResource", BackendStageArgs.builder()
        .pipelineId("string")
        .lbBackendConfigs(BackendStageLbBackendConfigArgs.builder()
            .lbConfig(BackendStageLbBackendConfigLbConfigArgs.builder()
                .domainName("string")
                .frontendId("string")
                .id("string")
                .isSsl(false)
                .zone("string")
                .build())
            .build())
        .projectId("string")
        .s3BackendConfig(BackendStageS3BackendConfigArgs.builder()
            .bucketName("string")
            .bucketRegion("string")
            .isWebsite(false)
            .build())
        .build());
    
    backend_stage_resource = scaleway.edgeservices.BackendStage("backendStageResource",
        pipeline_id="string",
        lb_backend_configs=[{
            "lb_config": {
                "domain_name": "string",
                "frontend_id": "string",
                "id": "string",
                "is_ssl": False,
                "zone": "string",
            },
        }],
        project_id="string",
        s3_backend_config={
            "bucket_name": "string",
            "bucket_region": "string",
            "is_website": False,
        })
    
    const backendStageResource = new scaleway.edgeservices.BackendStage("backendStageResource", {
        pipelineId: "string",
        lbBackendConfigs: [{
            lbConfig: {
                domainName: "string",
                frontendId: "string",
                id: "string",
                isSsl: false,
                zone: "string",
            },
        }],
        projectId: "string",
        s3BackendConfig: {
            bucketName: "string",
            bucketRegion: "string",
            isWebsite: false,
        },
    });
    
    type: scaleway:edgeservices:BackendStage
    properties:
        lbBackendConfigs:
            - lbConfig:
                domainName: string
                frontendId: string
                id: string
                isSsl: false
                zone: string
        pipelineId: string
        projectId: string
        s3BackendConfig:
            bucketName: string
            bucketRegion: string
            isWebsite: false
    

    BackendStage 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 BackendStage resource accepts the following input properties:

    PipelineId string
    The ID of the pipeline.
    LbBackendConfigs List<Pulumiverse.Scaleway.Edgeservices.Inputs.BackendStageLbBackendConfig>
    The Scaleway Load Balancer linked to the backend stage.
    ProjectId string
    project_id) The ID of the project the backend stage is associated with.
    S3BackendConfig Pulumiverse.Scaleway.Edgeservices.Inputs.BackendStageS3BackendConfig
    The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
    PipelineId string
    The ID of the pipeline.
    LbBackendConfigs []BackendStageLbBackendConfigArgs
    The Scaleway Load Balancer linked to the backend stage.
    ProjectId string
    project_id) The ID of the project the backend stage is associated with.
    S3BackendConfig BackendStageS3BackendConfigArgs
    The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
    pipelineId String
    The ID of the pipeline.
    lbBackendConfigs List<BackendStageLbBackendConfig>
    The Scaleway Load Balancer linked to the backend stage.
    projectId String
    project_id) The ID of the project the backend stage is associated with.
    s3BackendConfig BackendStageS3BackendConfig
    The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
    pipelineId string
    The ID of the pipeline.
    lbBackendConfigs BackendStageLbBackendConfig[]
    The Scaleway Load Balancer linked to the backend stage.
    projectId string
    project_id) The ID of the project the backend stage is associated with.
    s3BackendConfig BackendStageS3BackendConfig
    The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
    pipeline_id str
    The ID of the pipeline.
    lb_backend_configs Sequence[BackendStageLbBackendConfigArgs]
    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_config BackendStageS3BackendConfigArgs
    The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
    pipelineId String
    The ID of the pipeline.
    lbBackendConfigs List<Property Map>
    The Scaleway Load Balancer linked to the backend stage.
    projectId String
    project_id) The ID of the project the backend stage is associated with.
    s3BackendConfig 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 BackendStage resource produces the following output properties:

    CreatedAt string
    The date and time of the creation of the backend stage.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    The date and time of the last update of the backend stage.
    CreatedAt string
    The date and time of the creation of the backend stage.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    The date and time of the last update of the backend stage.
    createdAt String
    The date and time of the creation of the backend stage.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    The date and time of the last update of the backend stage.
    createdAt string
    The date and time of the creation of the backend stage.
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt 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.
    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.
    createdAt String
    The date and time of the creation of the backend stage.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    The date and time of the last update of the backend stage.

    Look up Existing BackendStage Resource

    Get an existing BackendStage 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?: BackendStageState, opts?: CustomResourceOptions): BackendStage
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            lb_backend_configs: Optional[Sequence[BackendStageLbBackendConfigArgs]] = None,
            pipeline_id: Optional[str] = None,
            project_id: Optional[str] = None,
            s3_backend_config: Optional[BackendStageS3BackendConfigArgs] = None,
            updated_at: Optional[str] = None) -> BackendStage
    func GetBackendStage(ctx *Context, name string, id IDInput, state *BackendStageState, opts ...ResourceOption) (*BackendStage, error)
    public static BackendStage Get(string name, Input<string> id, BackendStageState? state, CustomResourceOptions? opts = null)
    public static BackendStage get(String name, Output<String> id, BackendStageState state, CustomResourceOptions options)
    resources:  _:    type: scaleway:edgeservices:BackendStage    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.
    The following state arguments are supported:
    CreatedAt string
    The date and time of the creation of the backend stage.
    LbBackendConfigs List<Pulumiverse.Scaleway.Edgeservices.Inputs.BackendStageLbBackendConfig>
    The Scaleway Load Balancer linked to the backend stage.
    PipelineId string
    The ID of the pipeline.
    ProjectId string
    project_id) The ID of the project the backend stage is associated with.
    S3BackendConfig Pulumiverse.Scaleway.Edgeservices.Inputs.BackendStageS3BackendConfig
    The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
    UpdatedAt string
    The date and time of the last update of the backend stage.
    CreatedAt string
    The date and time of the creation of the backend stage.
    LbBackendConfigs []BackendStageLbBackendConfigArgs
    The Scaleway Load Balancer linked to the backend stage.
    PipelineId string
    The ID of the pipeline.
    ProjectId string
    project_id) The ID of the project the backend stage is associated with.
    S3BackendConfig BackendStageS3BackendConfigArgs
    The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
    UpdatedAt string
    The date and time of the last update of the backend stage.
    createdAt String
    The date and time of the creation of the backend stage.
    lbBackendConfigs List<BackendStageLbBackendConfig>
    The Scaleway Load Balancer linked to the backend stage.
    pipelineId String
    The ID of the pipeline.
    projectId String
    project_id) The ID of the project the backend stage is associated with.
    s3BackendConfig BackendStageS3BackendConfig
    The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
    updatedAt String
    The date and time of the last update of the backend stage.
    createdAt string
    The date and time of the creation of the backend stage.
    lbBackendConfigs BackendStageLbBackendConfig[]
    The Scaleway Load Balancer linked to the backend stage.
    pipelineId string
    The ID of the pipeline.
    projectId string
    project_id) The ID of the project the backend stage is associated with.
    s3BackendConfig BackendStageS3BackendConfig
    The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
    updatedAt 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_configs Sequence[BackendStageLbBackendConfigArgs]
    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_config BackendStageS3BackendConfigArgs
    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.
    createdAt String
    The date and time of the creation of the backend stage.
    lbBackendConfigs List<Property Map>
    The Scaleway Load Balancer linked to the backend stage.
    pipelineId String
    The ID of the pipeline.
    projectId String
    project_id) The ID of the project the backend stage is associated with.
    s3BackendConfig Property Map
    The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
    updatedAt String
    The date and time of the last update of the backend stage.

    Supporting Types

    BackendStageLbBackendConfig, BackendStageLbBackendConfigArgs

    lbConfig Property Map
    The Load Balancer config.

    BackendStageLbBackendConfigLbConfig, BackendStageLbBackendConfigLbConfigArgs

    DomainName string
    The Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
    FrontendId string
    The ID of the frontend.
    Id string
    The ID of the Load Balancer.
    IsSsl bool
    Defines whether the Load Balancer's frontend handles SSL connections.
    Zone string
    zone) The zone of the Load Balancer.
    DomainName string
    The Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
    FrontendId string
    The ID of the frontend.
    Id string
    The ID of the Load Balancer.
    IsSsl bool
    Defines whether the Load Balancer's frontend handles SSL connections.
    Zone string
    zone) The zone of the Load Balancer.
    domainName String
    The Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
    frontendId String
    The ID of the frontend.
    id String
    The ID of the Load Balancer.
    isSsl Boolean
    Defines whether the Load Balancer's frontend handles SSL connections.
    zone String
    zone) The zone of the Load Balancer.
    domainName string
    The Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
    frontendId string
    The ID of the frontend.
    id string
    The ID of the Load Balancer.
    isSsl 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.
    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.
    domainName String
    The Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
    frontendId String
    The ID of the frontend.
    id String
    The ID of the Load Balancer.
    isSsl Boolean
    Defines whether the Load Balancer's frontend handles SSL connections.
    zone String
    zone) The zone of the Load Balancer.

    BackendStageS3BackendConfig, BackendStageS3BackendConfigArgs

    BucketName string
    The name of the Bucket.
    BucketRegion string
    The region of the Bucket.
    IsWebsite bool
    Defines whether the bucket website feature is enabled.
    BucketName string
    The name of the Bucket.
    BucketRegion string
    The region of the Bucket.
    IsWebsite bool
    Defines whether the bucket website feature is enabled.
    bucketName String
    The name of the Bucket.
    bucketRegion String
    The region of the Bucket.
    isWebsite Boolean
    Defines whether the bucket website feature is enabled.
    bucketName string
    The name of the Bucket.
    bucketRegion string
    The region of the Bucket.
    isWebsite 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.
    bucketName String
    The name of the Bucket.
    bucketRegion String
    The region of the Bucket.
    isWebsite Boolean
    Defines whether the bucket website feature is enabled.

    Import

    Backend stages can be imported using the {id}, e.g.

    bash

    $ pulumi import scaleway:edgeservices/backendStage:BackendStage 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 scaleway Terraform Provider.
    scaleway logo
    Scaleway v1.41.1 published on Monday, Jan 12, 2026 by pulumiverse
      Meet Neo: Your AI Platform Teammate