scaleway.EdgeServicesBackendStage
Explore with Pulumi AI
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:
- Pipeline
Id string - The ID of the pipeline.
- Lb
Backend List<Pulumiverse.Configs Scaleway. Inputs. Edge Services Backend Stage Lb Backend Config> - The Scaleway Load Balancer linked to the backend stage.
- Project
Id string project_id
) The ID of the project the backend stage is associated with.- S3Backend
Config Pulumiverse.Scaleway. Inputs. Edge Services Backend Stage S3Backend Config - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- Pipeline
Id string - The ID of the pipeline.
- Lb
Backend []EdgeConfigs Services Backend Stage Lb Backend Config Args - The Scaleway Load Balancer linked to the backend stage.
- Project
Id string project_id
) The ID of the project the backend stage is associated with.- S3Backend
Config EdgeServices Backend Stage S3Backend Config Args - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- pipeline
Id String - The ID of the pipeline.
- lb
Backend List<EdgeConfigs Services Backend Stage Lb Backend Config> - The Scaleway Load Balancer linked to the backend stage.
- project
Id String project_id
) The ID of the project the backend stage is associated with.- s3Backend
Config EdgeServices Backend Stage S3Backend Config - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- pipeline
Id string - The ID of the pipeline.
- lb
Backend EdgeConfigs Services Backend Stage Lb Backend Config[] - The Scaleway Load Balancer linked to the backend stage.
- project
Id string project_id
) The ID of the project the backend stage is associated with.- s3Backend
Config EdgeServices Backend Stage S3Backend Config - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- pipeline_
id str - The ID of the pipeline.
- lb_
backend_ Sequence[Edgeconfigs Services Backend Stage Lb Backend Config Args] - The Scaleway Load Balancer linked to the backend stage.
- project_
id str project_id
) The ID of the project the backend stage is associated with.- s3_
backend_ Edgeconfig Services Backend Stage S3Backend Config Args - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- pipeline
Id String - The ID of the pipeline.
- lb
Backend List<Property Map>Configs - The Scaleway Load Balancer linked to the backend stage.
- project
Id String project_id
) The ID of the project the backend stage is associated with.- s3Backend
Config Property Map - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
Outputs
All input properties are implicitly available as output properties. Additionally, the EdgeServicesBackendStage resource produces the following output properties:
- created_
at str - The date and time of the creation of the backend stage.
- id str
- The provider-assigned unique ID for this managed resource.
- updated_
at str - The date and time of the last update of the backend stage.
Look up Existing EdgeServicesBackendStage Resource
Get an existing EdgeServicesBackendStage resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: EdgeServicesBackendStageState, opts?: CustomResourceOptions): EdgeServicesBackendStage
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_at: Optional[str] = None,
lb_backend_configs: Optional[Sequence[EdgeServicesBackendStageLbBackendConfigArgs]] = None,
pipeline_id: Optional[str] = None,
project_id: Optional[str] = None,
s3_backend_config: Optional[EdgeServicesBackendStageS3BackendConfigArgs] = None,
updated_at: Optional[str] = None) -> 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.
- Created
At string - The date and time of the creation of the backend stage.
- Lb
Backend List<Pulumiverse.Configs Scaleway. Inputs. Edge Services Backend Stage Lb Backend Config> - The Scaleway Load Balancer linked to the backend stage.
- Pipeline
Id string - The ID of the pipeline.
- Project
Id string project_id
) The ID of the project the backend stage is associated with.- S3Backend
Config Pulumiverse.Scaleway. Inputs. Edge Services Backend Stage S3Backend Config - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- Updated
At string - The date and time of the last update of the backend stage.
- Created
At string - The date and time of the creation of the backend stage.
- Lb
Backend []EdgeConfigs Services Backend Stage Lb Backend Config Args - The Scaleway Load Balancer linked to the backend stage.
- Pipeline
Id string - The ID of the pipeline.
- Project
Id string project_id
) The ID of the project the backend stage is associated with.- S3Backend
Config EdgeServices Backend Stage S3Backend Config Args - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- Updated
At string - The date and time of the last update of the backend stage.
- created
At String - The date and time of the creation of the backend stage.
- lb
Backend List<EdgeConfigs Services Backend Stage Lb Backend Config> - The Scaleway Load Balancer linked to the backend stage.
- pipeline
Id String - The ID of the pipeline.
- project
Id String project_id
) The ID of the project the backend stage is associated with.- s3Backend
Config EdgeServices Backend Stage S3Backend Config - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- updated
At String - The date and time of the last update of the backend stage.
- created
At string - The date and time of the creation of the backend stage.
- lb
Backend EdgeConfigs Services Backend Stage Lb Backend Config[] - The Scaleway Load Balancer linked to the backend stage.
- pipeline
Id string - The ID of the pipeline.
- project
Id string project_id
) The ID of the project the backend stage is associated with.- s3Backend
Config EdgeServices Backend Stage S3Backend Config - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- updated
At string - The date and time of the last update of the backend stage.
- created_
at str - The date and time of the creation of the backend stage.
- lb_
backend_ Sequence[Edgeconfigs Services Backend Stage Lb Backend Config Args] - The Scaleway Load Balancer linked to the backend stage.
- pipeline_
id str - The ID of the pipeline.
- project_
id str project_id
) The ID of the project the backend stage is associated with.- s3_
backend_ Edgeconfig Services Backend Stage S3Backend Config Args - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- updated_
at str - The date and time of the last update of the backend stage.
- created
At String - The date and time of the creation of the backend stage.
- lb
Backend List<Property Map>Configs - The Scaleway Load Balancer linked to the backend stage.
- pipeline
Id String - The ID of the pipeline.
- project
Id String project_id
) The ID of the project the backend stage is associated with.- s3Backend
Config Property Map - The Scaleway Object Storage origin bucket (S3) linked to the backend stage.
- updated
At String - The date and time of the last update of the backend stage.
Supporting Types
EdgeServicesBackendStageLbBackendConfig, EdgeServicesBackendStageLbBackendConfigArgs
- Lb
Config Pulumiverse.Scaleway. Inputs. Edge Services Backend Stage Lb Backend Config Lb Config - The Load Balancer config.
- Lb
Config EdgeServices Backend Stage Lb Backend Config Lb Config - The Load Balancer config.
- lb
Config EdgeServices Backend Stage Lb Backend Config Lb Config - The Load Balancer config.
- lb
Config EdgeServices Backend Stage Lb Backend Config Lb Config - The Load Balancer config.
- lb_
config EdgeServices Backend Stage Lb Backend Config Lb Config - The Load Balancer config.
- lb
Config Property Map - The Load Balancer config.
EdgeServicesBackendStageLbBackendConfigLbConfig, EdgeServicesBackendStageLbBackendConfigLbConfigArgs
- Domain
Name string - The Fully Qualified Domain Name (in the format subdomain.example.com) to use in HTTP requests sent towards your Load Balancer.
- Frontend
Id string - The ID of the frontend.
- 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.
EdgeServicesBackendStageS3BackendConfig, EdgeServicesBackendStageS3BackendConfigArgs
- Bucket
Name string - The name of the Bucket.
- Bucket
Region string - The region of the Bucket.
- Is
Website bool - Defines whether the bucket website feature is enabled.
- Bucket
Name string - The name of the Bucket.
- Bucket
Region string - The region of the Bucket.
- Is
Website bool - Defines whether the bucket website feature is enabled.
- bucket
Name String - The name of the Bucket.
- bucket
Region String - The region of the Bucket.
- is
Website Boolean - Defines whether the bucket website feature is enabled.
- bucket
Name string - The name of the Bucket.
- bucket
Region string - The region of the Bucket.
- is
Website boolean - Defines whether the bucket website feature is enabled.
- bucket_
name str - The name of the Bucket.
- bucket_
region str - The region of the Bucket.
- is_
website bool - Defines whether the bucket website feature is enabled.
- bucket
Name String - The name of the Bucket.
- bucket
Region String - The region of the Bucket.
- is
Website Boolean - Defines whether the bucket website feature is enabled.
Import
Backend stages can be imported using the {id}
, e.g.
bash
$ pulumi import scaleway:index/edgeServicesBackendStage:EdgeServicesBackendStage basic 11111111-1111-1111-1111-111111111111
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- scaleway pulumiverse/pulumi-scaleway
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scaleway
Terraform Provider.