1. Packages
  2. Scaleway
  3. API Docs
  4. EdgeServicesBackendStage
Scaleway v1.27.1 published on Wednesday, Apr 30, 2025 by pulumiverse

scaleway.EdgeServicesBackendStage

Explore with Pulumi AI

scaleway logo
Scaleway v1.27.1 published on Wednesday, Apr 30, 2025 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 mainEdgeServicesPipeline = new scaleway.EdgeServicesPipeline("main", {name: "my-pipeline"});
    const mainEdgeServicesBackendStage = new scaleway.EdgeServicesBackendStage("main", {
        pipelineId: mainEdgeServicesPipeline.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_edge_services_pipeline = scaleway.EdgeServicesPipeline("main", name="my-pipeline")
    main_edge_services_backend_stage = scaleway.EdgeServicesBackendStage("main",
        pipeline_id=main_edge_services_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"
    	"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
    		}
    		mainEdgeServicesPipeline, err := scaleway.NewEdgeServicesPipeline(ctx, "main", &scaleway.EdgeServicesPipelineArgs{
    			Name: pulumi.String("my-pipeline"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = scaleway.NewEdgeServicesBackendStage(ctx, "main", &scaleway.EdgeServicesBackendStageArgs{
    			PipelineId: mainEdgeServicesPipeline.ID(),
    			S3BackendConfig: &scaleway.EdgeServicesBackendStageS3BackendConfigArgs{
    				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 mainEdgeServicesPipeline = new Scaleway.EdgeServicesPipeline("main", new()
        {
            Name = "my-pipeline",
        });
    
        var mainEdgeServicesBackendStage = new Scaleway.EdgeServicesBackendStage("main", new()
        {
            PipelineId = mainEdgeServicesPipeline.Id,
            S3BackendConfig = new Scaleway.Inputs.EdgeServicesBackendStageS3BackendConfigArgs
            {
                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.EdgeServicesPipeline;
    import com.pulumi.scaleway.EdgeServicesPipelineArgs;
    import com.pulumi.scaleway.EdgeServicesBackendStage;
    import com.pulumi.scaleway.EdgeServicesBackendStageArgs;
    import com.pulumi.scaleway.inputs.EdgeServicesBackendStageS3BackendConfigArgs;
    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 mainEdgeServicesPipeline = new EdgeServicesPipeline("mainEdgeServicesPipeline", EdgeServicesPipelineArgs.builder()
                .name("my-pipeline")
                .build());
    
            var mainEdgeServicesBackendStage = new EdgeServicesBackendStage("mainEdgeServicesBackendStage", EdgeServicesBackendStageArgs.builder()
                .pipelineId(mainEdgeServicesPipeline.id())
                .s3BackendConfig(EdgeServicesBackendStageS3BackendConfigArgs.builder()
                    .bucketName(main.name())
                    .bucketRegion("fr-par")
                    .build())
                .build());
    
        }
    }
    
    resources:
      main:
        type: scaleway:object:Bucket
        properties:
          name: my-bucket-name
          tags:
            foo: bar
      mainEdgeServicesPipeline:
        type: scaleway:EdgeServicesPipeline
        name: main
        properties:
          name: my-pipeline
      mainEdgeServicesBackendStage:
        type: scaleway:EdgeServicesBackendStage
        name: main
        properties:
          pipelineId: ${mainEdgeServicesPipeline.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 mainEdgeServicesPipeline = new scaleway.EdgeServicesPipeline("main", {name: "my-pipeline"});
    const mainEdgeServicesBackendStage = new scaleway.EdgeServicesBackendStage("main", {
        pipelineId: mainEdgeServicesPipeline.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_edge_services_pipeline = scaleway.EdgeServicesPipeline("main", name="my-pipeline")
    main_edge_services_backend_stage = scaleway.EdgeServicesBackendStage("main",
        pipeline_id=main_edge_services_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"
    	"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
    		}
    		mainEdgeServicesPipeline, err := scaleway.NewEdgeServicesPipeline(ctx, "main", &scaleway.EdgeServicesPipelineArgs{
    			Name: pulumi.String("my-pipeline"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = scaleway.NewEdgeServicesBackendStage(ctx, "main", &scaleway.EdgeServicesBackendStageArgs{
    			PipelineId: mainEdgeServicesPipeline.ID(),
    			LbBackendConfigs: scaleway.EdgeServicesBackendStageLbBackendConfigArray{
    				&scaleway.EdgeServicesBackendStageLbBackendConfigArgs{
    					LbConfig: &scaleway.EdgeServicesBackendStageLbBackendConfigLbConfigArgs{
    						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 mainEdgeServicesPipeline = new Scaleway.EdgeServicesPipeline("main", new()
        {
            Name = "my-pipeline",
        });
    
        var mainEdgeServicesBackendStage = new Scaleway.EdgeServicesBackendStage("main", new()
        {
            PipelineId = mainEdgeServicesPipeline.Id,
            LbBackendConfigs = new[]
            {
                new Scaleway.Inputs.EdgeServicesBackendStageLbBackendConfigArgs
                {
                    LbConfig = new Scaleway.Inputs.EdgeServicesBackendStageLbBackendConfigLbConfigArgs
                    {
                        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.EdgeServicesPipeline;
    import com.pulumi.scaleway.EdgeServicesPipelineArgs;
    import com.pulumi.scaleway.EdgeServicesBackendStage;
    import com.pulumi.scaleway.EdgeServicesBackendStageArgs;
    import com.pulumi.scaleway.inputs.EdgeServicesBackendStageLbBackendConfigArgs;
    import com.pulumi.scaleway.inputs.EdgeServicesBackendStageLbBackendConfigLbConfigArgs;
    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 mainEdgeServicesPipeline = new EdgeServicesPipeline("mainEdgeServicesPipeline", EdgeServicesPipelineArgs.builder()
                .name("my-pipeline")
                .build());
    
            var mainEdgeServicesBackendStage = new EdgeServicesBackendStage("mainEdgeServicesBackendStage", EdgeServicesBackendStageArgs.builder()
                .pipelineId(mainEdgeServicesPipeline.id())
                .lbBackendConfigs(EdgeServicesBackendStageLbBackendConfigArgs.builder()
                    .lbConfig(EdgeServicesBackendStageLbBackendConfigLbConfigArgs.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}
      mainEdgeServicesPipeline:
        type: scaleway:EdgeServicesPipeline
        name: main
        properties:
          name: my-pipeline
      mainEdgeServicesBackendStage:
        type: scaleway:EdgeServicesBackendStage
        name: main
        properties:
          pipelineId: ${mainEdgeServicesPipeline.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,
                                 pipeline_id: Optional[str] = None,
                                 lb_backend_configs: Optional[Sequence[EdgeServicesBackendStageLbBackendConfigArgs]] = 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.

    Constructor example

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

    var edgeServicesBackendStageResource = new Scaleway.EdgeServicesBackendStage("edgeServicesBackendStageResource", new()
    {
        PipelineId = "string",
        LbBackendConfigs = new[]
        {
            new Scaleway.Inputs.EdgeServicesBackendStageLbBackendConfigArgs
            {
                LbConfig = new Scaleway.Inputs.EdgeServicesBackendStageLbBackendConfigLbConfigArgs
                {
                    DomainName = "string",
                    FrontendId = "string",
                    Id = "string",
                    IsSsl = false,
                    Zone = "string",
                },
            },
        },
        ProjectId = "string",
        S3BackendConfig = new Scaleway.Inputs.EdgeServicesBackendStageS3BackendConfigArgs
        {
            BucketName = "string",
            BucketRegion = "string",
            IsWebsite = false,
        },
    });
    
    example, err := scaleway.NewEdgeServicesBackendStage(ctx, "edgeServicesBackendStageResource", &scaleway.EdgeServicesBackendStageArgs{
    	PipelineId: pulumi.String("string"),
    	LbBackendConfigs: scaleway.EdgeServicesBackendStageLbBackendConfigArray{
    		&scaleway.EdgeServicesBackendStageLbBackendConfigArgs{
    			LbConfig: &scaleway.EdgeServicesBackendStageLbBackendConfigLbConfigArgs{
    				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: &scaleway.EdgeServicesBackendStageS3BackendConfigArgs{
    		BucketName:   pulumi.String("string"),
    		BucketRegion: pulumi.String("string"),
    		IsWebsite:    pulumi.Bool(false),
    	},
    })
    
    var edgeServicesBackendStageResource = new EdgeServicesBackendStage("edgeServicesBackendStageResource", EdgeServicesBackendStageArgs.builder()
        .pipelineId("string")
        .lbBackendConfigs(EdgeServicesBackendStageLbBackendConfigArgs.builder()
            .lbConfig(EdgeServicesBackendStageLbBackendConfigLbConfigArgs.builder()
                .domainName("string")
                .frontendId("string")
                .id("string")
                .isSsl(false)
                .zone("string")
                .build())
            .build())
        .projectId("string")
        .s3BackendConfig(EdgeServicesBackendStageS3BackendConfigArgs.builder()
            .bucketName("string")
            .bucketRegion("string")
            .isWebsite(false)
            .build())
        .build());
    
    edge_services_backend_stage_resource = scaleway.EdgeServicesBackendStage("edgeServicesBackendStageResource",
        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 edgeServicesBackendStageResource = new scaleway.EdgeServicesBackendStage("edgeServicesBackendStageResource", {
        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:EdgeServicesBackendStage
    properties:
        lbBackendConfigs:
            - lbConfig:
                domainName: string
                frontendId: string
                id: string
                isSsl: false
                zone: string
        pipelineId: string
        projectId: string
        s3BackendConfig:
            bucketName: string
            bucketRegion: string
            isWebsite: false
    

    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:

    PipelineId string
    The ID of the pipeline.
    LbBackendConfigs List<Pulumiverse.Scaleway.Inputs.EdgeServicesBackendStageLbBackendConfig>
    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.Inputs.EdgeServicesBackendStageS3BackendConfig
    The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
    PipelineId string
    The ID of the pipeline.
    LbBackendConfigs []EdgeServicesBackendStageLbBackendConfigArgs
    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 EdgeServicesBackendStageS3BackendConfigArgs
    The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
    pipelineId String
    The ID of the pipeline.
    lbBackendConfigs List<EdgeServicesBackendStageLbBackendConfig>
    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 EdgeServicesBackendStageS3BackendConfig
    The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
    pipelineId string
    The ID of the pipeline.
    lbBackendConfigs EdgeServicesBackendStageLbBackendConfig[]
    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 EdgeServicesBackendStageS3BackendConfig
    The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
    pipeline_id str
    The ID of the pipeline.
    lb_backend_configs Sequence[EdgeServicesBackendStageLbBackendConfigArgs]
    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 EdgeServicesBackendStageS3BackendConfigArgs
    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 EdgeServicesBackendStage 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 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) -> EdgeServicesBackendStage
    func 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.
    The following state arguments are supported:
    CreatedAt string
    The date and time of the creation of the backend stage.
    LbBackendConfigs List<Pulumiverse.Scaleway.Inputs.EdgeServicesBackendStageLbBackendConfig>
    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.Inputs.EdgeServicesBackendStageS3BackendConfig
    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 []EdgeServicesBackendStageLbBackendConfigArgs
    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 EdgeServicesBackendStageS3BackendConfigArgs
    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<EdgeServicesBackendStageLbBackendConfig>
    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 EdgeServicesBackendStageS3BackendConfig
    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 EdgeServicesBackendStageLbBackendConfig[]
    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 EdgeServicesBackendStageS3BackendConfig
    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[EdgeServicesBackendStageLbBackendConfigArgs]
    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 EdgeServicesBackendStageS3BackendConfigArgs
    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

    EdgeServicesBackendStageLbBackendConfig, EdgeServicesBackendStageLbBackendConfigArgs

    lbConfig Property Map
    The Load Balancer config.

    EdgeServicesBackendStageLbBackendConfigLbConfig, EdgeServicesBackendStageLbBackendConfigLbConfigArgs

    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.

    EdgeServicesBackendStageS3BackendConfig, EdgeServicesBackendStageS3BackendConfigArgs

    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: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 scaleway Terraform Provider.
    scaleway logo
    Scaleway v1.27.1 published on Wednesday, Apr 30, 2025 by pulumiverse