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:
- Pipeline
Id string - The ID of the pipeline.
- Lb
Backend List<Pulumiverse.Configs Scaleway. Edgeservices. Inputs. 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. Edgeservices. Inputs. 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 []BackendConfigs 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 BackendStage 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<BackendConfigs 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 BackendStage S3Backend Config - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- pipeline
Id string - The ID of the pipeline.
- lb
Backend BackendConfigs 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 BackendStage 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[Backendconfigs 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_ Backendconfig 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 BackendStage 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 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) -> BackendStagefunc 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.
- Created
At string - The date and time of the creation of the backend stage.
- Lb
Backend List<Pulumiverse.Configs Scaleway. Edgeservices. Inputs. 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. Edgeservices. Inputs. 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 []BackendConfigs 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 BackendStage 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<BackendConfigs 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 BackendStage 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 BackendConfigs 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 BackendStage 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[Backendconfigs 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_ Backendconfig 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
BackendStageLbBackendConfig, BackendStageLbBackendConfigArgs
- Lb
Config Pulumiverse.Scaleway. Edgeservices. Inputs. Backend Stage Lb Backend Config Lb Config - The Load Balancer config.
- Lb
Config BackendStage Lb Backend Config Lb Config - The Load Balancer config.
- lb
Config BackendStage Lb Backend Config Lb Config - The Load Balancer config.
- lb
Config BackendStage Lb Backend Config Lb Config - The Load Balancer config.
- lb_
config BackendStage Lb Backend Config Lb Config - The Load Balancer config.
- lb
Config Property Map - The Load Balancer config.
BackendStageLbBackendConfigLbConfig, BackendStageLbBackendConfigLbConfigArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
BackendStageS3BackendConfig, BackendStageS3BackendConfigArgs
- 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: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
scalewayTerraform Provider.
