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

scaleway.EdgeServicesTlsStage

Explore with Pulumi AI

scaleway logo
Scaleway v1.27.1 published on Wednesday, Apr 30, 2025 by pulumiverse

    Creates and manages Scaleway Edge Services TLS Stages.

    Example Usage

    Managed

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const main = new scaleway.EdgeServicesTlsStage("main", {
        pipelineId: mainScalewayEdgeServicesPipeline.id,
        managedCertificate: true,
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    main = scaleway.EdgeServicesTlsStage("main",
        pipeline_id=main_scaleway_edge_services_pipeline["id"],
        managed_certificate=True)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := scaleway.NewEdgeServicesTlsStage(ctx, "main", &scaleway.EdgeServicesTlsStageArgs{
    			PipelineId:         pulumi.Any(mainScalewayEdgeServicesPipeline.Id),
    			ManagedCertificate: pulumi.Bool(true),
    		})
    		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.EdgeServicesTlsStage("main", new()
        {
            PipelineId = mainScalewayEdgeServicesPipeline.Id,
            ManagedCertificate = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.EdgeServicesTlsStage;
    import com.pulumi.scaleway.EdgeServicesTlsStageArgs;
    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 EdgeServicesTlsStage("main", EdgeServicesTlsStageArgs.builder()
                .pipelineId(mainScalewayEdgeServicesPipeline.id())
                .managedCertificate(true)
                .build());
    
        }
    }
    
    resources:
      main:
        type: scaleway:EdgeServicesTlsStage
        properties:
          pipelineId: ${mainScalewayEdgeServicesPipeline.id}
          managedCertificate: true
    

    With a certificate stored in Scaleway Secret Manager

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const main = new scaleway.EdgeServicesTlsStage("main", {
        pipelineId: mainScalewayEdgeServicesPipeline.id,
        secrets: [{
            secretId: "11111111-1111-1111-1111-111111111111",
            region: "fr-par",
        }],
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    main = scaleway.EdgeServicesTlsStage("main",
        pipeline_id=main_scaleway_edge_services_pipeline["id"],
        secrets=[{
            "secret_id": "11111111-1111-1111-1111-111111111111",
            "region": "fr-par",
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := scaleway.NewEdgeServicesTlsStage(ctx, "main", &scaleway.EdgeServicesTlsStageArgs{
    			PipelineId: pulumi.Any(mainScalewayEdgeServicesPipeline.Id),
    			Secrets: scaleway.EdgeServicesTlsStageSecretArray{
    				&scaleway.EdgeServicesTlsStageSecretArgs{
    					SecretId: pulumi.String("11111111-1111-1111-1111-111111111111"),
    					Region:   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.EdgeServicesTlsStage("main", new()
        {
            PipelineId = mainScalewayEdgeServicesPipeline.Id,
            Secrets = new[]
            {
                new Scaleway.Inputs.EdgeServicesTlsStageSecretArgs
                {
                    SecretId = "11111111-1111-1111-1111-111111111111",
                    Region = "fr-par",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.EdgeServicesTlsStage;
    import com.pulumi.scaleway.EdgeServicesTlsStageArgs;
    import com.pulumi.scaleway.inputs.EdgeServicesTlsStageSecretArgs;
    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 EdgeServicesTlsStage("main", EdgeServicesTlsStageArgs.builder()
                .pipelineId(mainScalewayEdgeServicesPipeline.id())
                .secrets(EdgeServicesTlsStageSecretArgs.builder()
                    .secretId("11111111-1111-1111-1111-111111111111")
                    .region("fr-par")
                    .build())
                .build());
    
        }
    }
    
    resources:
      main:
        type: scaleway:EdgeServicesTlsStage
        properties:
          pipelineId: ${mainScalewayEdgeServicesPipeline.id}
          secrets:
            - secretId: 11111111-1111-1111-1111-111111111111
              region: fr-par
    

    Create EdgeServicesTlsStage Resource

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

    Constructor syntax

    new EdgeServicesTlsStage(name: string, args: EdgeServicesTlsStageArgs, opts?: CustomResourceOptions);
    @overload
    def EdgeServicesTlsStage(resource_name: str,
                             args: EdgeServicesTlsStageArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def EdgeServicesTlsStage(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             pipeline_id: Optional[str] = None,
                             backend_stage_id: Optional[str] = None,
                             cache_stage_id: Optional[str] = None,
                             managed_certificate: Optional[bool] = None,
                             project_id: Optional[str] = None,
                             route_stage_id: Optional[str] = None,
                             secrets: Optional[Sequence[EdgeServicesTlsStageSecretArgs]] = None,
                             waf_stage_id: Optional[str] = None)
    func NewEdgeServicesTlsStage(ctx *Context, name string, args EdgeServicesTlsStageArgs, opts ...ResourceOption) (*EdgeServicesTlsStage, error)
    public EdgeServicesTlsStage(string name, EdgeServicesTlsStageArgs args, CustomResourceOptions? opts = null)
    public EdgeServicesTlsStage(String name, EdgeServicesTlsStageArgs args)
    public EdgeServicesTlsStage(String name, EdgeServicesTlsStageArgs args, CustomResourceOptions options)
    
    type: scaleway:EdgeServicesTlsStage
    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 EdgeServicesTlsStageArgs
    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 EdgeServicesTlsStageArgs
    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 EdgeServicesTlsStageArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EdgeServicesTlsStageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EdgeServicesTlsStageArgs
    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 edgeServicesTlsStageResource = new Scaleway.EdgeServicesTlsStage("edgeServicesTlsStageResource", new()
    {
        PipelineId = "string",
        BackendStageId = "string",
        CacheStageId = "string",
        ManagedCertificate = false,
        ProjectId = "string",
        RouteStageId = "string",
        Secrets = new[]
        {
            new Scaleway.Inputs.EdgeServicesTlsStageSecretArgs
            {
                Region = "string",
                SecretId = "string",
            },
        },
        WafStageId = "string",
    });
    
    example, err := scaleway.NewEdgeServicesTlsStage(ctx, "edgeServicesTlsStageResource", &scaleway.EdgeServicesTlsStageArgs{
    	PipelineId:         pulumi.String("string"),
    	BackendStageId:     pulumi.String("string"),
    	CacheStageId:       pulumi.String("string"),
    	ManagedCertificate: pulumi.Bool(false),
    	ProjectId:          pulumi.String("string"),
    	RouteStageId:       pulumi.String("string"),
    	Secrets: scaleway.EdgeServicesTlsStageSecretArray{
    		&scaleway.EdgeServicesTlsStageSecretArgs{
    			Region:   pulumi.String("string"),
    			SecretId: pulumi.String("string"),
    		},
    	},
    	WafStageId: pulumi.String("string"),
    })
    
    var edgeServicesTlsStageResource = new EdgeServicesTlsStage("edgeServicesTlsStageResource", EdgeServicesTlsStageArgs.builder()
        .pipelineId("string")
        .backendStageId("string")
        .cacheStageId("string")
        .managedCertificate(false)
        .projectId("string")
        .routeStageId("string")
        .secrets(EdgeServicesTlsStageSecretArgs.builder()
            .region("string")
            .secretId("string")
            .build())
        .wafStageId("string")
        .build());
    
    edge_services_tls_stage_resource = scaleway.EdgeServicesTlsStage("edgeServicesTlsStageResource",
        pipeline_id="string",
        backend_stage_id="string",
        cache_stage_id="string",
        managed_certificate=False,
        project_id="string",
        route_stage_id="string",
        secrets=[{
            "region": "string",
            "secret_id": "string",
        }],
        waf_stage_id="string")
    
    const edgeServicesTlsStageResource = new scaleway.EdgeServicesTlsStage("edgeServicesTlsStageResource", {
        pipelineId: "string",
        backendStageId: "string",
        cacheStageId: "string",
        managedCertificate: false,
        projectId: "string",
        routeStageId: "string",
        secrets: [{
            region: "string",
            secretId: "string",
        }],
        wafStageId: "string",
    });
    
    type: scaleway:EdgeServicesTlsStage
    properties:
        backendStageId: string
        cacheStageId: string
        managedCertificate: false
        pipelineId: string
        projectId: string
        routeStageId: string
        secrets:
            - region: string
              secretId: string
        wafStageId: string
    

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

    PipelineId string
    The ID of the pipeline.
    BackendStageId string
    The backend stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    CacheStageId string
    The cache stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    ManagedCertificate bool
    Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
    ProjectId string
    project_id) The ID of the project the TLS stage is associated with.
    RouteStageId string
    The route stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    Secrets List<Pulumiverse.Scaleway.Inputs.EdgeServicesTlsStageSecret>
    The TLS secrets.
    WafStageId string
    The WAF stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    PipelineId string
    The ID of the pipeline.
    BackendStageId string
    The backend stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    CacheStageId string
    The cache stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    ManagedCertificate bool
    Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
    ProjectId string
    project_id) The ID of the project the TLS stage is associated with.
    RouteStageId string
    The route stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    Secrets []EdgeServicesTlsStageSecretArgs
    The TLS secrets.
    WafStageId string
    The WAF stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    pipelineId String
    The ID of the pipeline.
    backendStageId String
    The backend stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    cacheStageId String
    The cache stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    managedCertificate Boolean
    Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
    projectId String
    project_id) The ID of the project the TLS stage is associated with.
    routeStageId String
    The route stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    secrets List<EdgeServicesTlsStageSecret>
    The TLS secrets.
    wafStageId String
    The WAF stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    pipelineId string
    The ID of the pipeline.
    backendStageId string
    The backend stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    cacheStageId string
    The cache stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    managedCertificate boolean
    Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
    projectId string
    project_id) The ID of the project the TLS stage is associated with.
    routeStageId string
    The route stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    secrets EdgeServicesTlsStageSecret[]
    The TLS secrets.
    wafStageId string
    The WAF stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    pipeline_id str
    The ID of the pipeline.
    backend_stage_id str
    The backend stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    cache_stage_id str
    The cache stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    managed_certificate bool
    Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
    project_id str
    project_id) The ID of the project the TLS stage is associated with.
    route_stage_id str
    The route stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    secrets Sequence[EdgeServicesTlsStageSecretArgs]
    The TLS secrets.
    waf_stage_id str
    The WAF stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    pipelineId String
    The ID of the pipeline.
    backendStageId String
    The backend stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    cacheStageId String
    The cache stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    managedCertificate Boolean
    Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
    projectId String
    project_id) The ID of the project the TLS stage is associated with.
    routeStageId String
    The route stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    secrets List<Property Map>
    The TLS secrets.
    wafStageId String
    The WAF stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the EdgeServicesTlsStage resource produces the following output properties:

    CertificateExpiresAt string
    The expiration date of the certificate.
    CreatedAt string
    The date and time of the creation of the TLS stage.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    The date and time of the last update of the TLS stage.
    CertificateExpiresAt string
    The expiration date of the certificate.
    CreatedAt string
    The date and time of the creation of the TLS stage.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    The date and time of the last update of the TLS stage.
    certificateExpiresAt String
    The expiration date of the certificate.
    createdAt String
    The date and time of the creation of the TLS stage.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    The date and time of the last update of the TLS stage.
    certificateExpiresAt string
    The expiration date of the certificate.
    createdAt string
    The date and time of the creation of the TLS stage.
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt string
    The date and time of the last update of the TLS stage.
    certificate_expires_at str
    The expiration date of the certificate.
    created_at str
    The date and time of the creation of the TLS 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 TLS stage.
    certificateExpiresAt String
    The expiration date of the certificate.
    createdAt String
    The date and time of the creation of the TLS stage.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    The date and time of the last update of the TLS stage.

    Look up Existing EdgeServicesTlsStage Resource

    Get an existing EdgeServicesTlsStage 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?: EdgeServicesTlsStageState, opts?: CustomResourceOptions): EdgeServicesTlsStage
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            backend_stage_id: Optional[str] = None,
            cache_stage_id: Optional[str] = None,
            certificate_expires_at: Optional[str] = None,
            created_at: Optional[str] = None,
            managed_certificate: Optional[bool] = None,
            pipeline_id: Optional[str] = None,
            project_id: Optional[str] = None,
            route_stage_id: Optional[str] = None,
            secrets: Optional[Sequence[EdgeServicesTlsStageSecretArgs]] = None,
            updated_at: Optional[str] = None,
            waf_stage_id: Optional[str] = None) -> EdgeServicesTlsStage
    func GetEdgeServicesTlsStage(ctx *Context, name string, id IDInput, state *EdgeServicesTlsStageState, opts ...ResourceOption) (*EdgeServicesTlsStage, error)
    public static EdgeServicesTlsStage Get(string name, Input<string> id, EdgeServicesTlsStageState? state, CustomResourceOptions? opts = null)
    public static EdgeServicesTlsStage get(String name, Output<String> id, EdgeServicesTlsStageState state, CustomResourceOptions options)
    resources:  _:    type: scaleway:EdgeServicesTlsStage    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:
    BackendStageId string
    The backend stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    CacheStageId string
    The cache stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    CertificateExpiresAt string
    The expiration date of the certificate.
    CreatedAt string
    The date and time of the creation of the TLS stage.
    ManagedCertificate bool
    Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
    PipelineId string
    The ID of the pipeline.
    ProjectId string
    project_id) The ID of the project the TLS stage is associated with.
    RouteStageId string
    The route stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    Secrets List<Pulumiverse.Scaleway.Inputs.EdgeServicesTlsStageSecret>
    The TLS secrets.
    UpdatedAt string
    The date and time of the last update of the TLS stage.
    WafStageId string
    The WAF stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    BackendStageId string
    The backend stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    CacheStageId string
    The cache stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    CertificateExpiresAt string
    The expiration date of the certificate.
    CreatedAt string
    The date and time of the creation of the TLS stage.
    ManagedCertificate bool
    Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
    PipelineId string
    The ID of the pipeline.
    ProjectId string
    project_id) The ID of the project the TLS stage is associated with.
    RouteStageId string
    The route stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    Secrets []EdgeServicesTlsStageSecretArgs
    The TLS secrets.
    UpdatedAt string
    The date and time of the last update of the TLS stage.
    WafStageId string
    The WAF stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    backendStageId String
    The backend stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    cacheStageId String
    The cache stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    certificateExpiresAt String
    The expiration date of the certificate.
    createdAt String
    The date and time of the creation of the TLS stage.
    managedCertificate Boolean
    Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
    pipelineId String
    The ID of the pipeline.
    projectId String
    project_id) The ID of the project the TLS stage is associated with.
    routeStageId String
    The route stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    secrets List<EdgeServicesTlsStageSecret>
    The TLS secrets.
    updatedAt String
    The date and time of the last update of the TLS stage.
    wafStageId String
    The WAF stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    backendStageId string
    The backend stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    cacheStageId string
    The cache stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    certificateExpiresAt string
    The expiration date of the certificate.
    createdAt string
    The date and time of the creation of the TLS stage.
    managedCertificate boolean
    Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
    pipelineId string
    The ID of the pipeline.
    projectId string
    project_id) The ID of the project the TLS stage is associated with.
    routeStageId string
    The route stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    secrets EdgeServicesTlsStageSecret[]
    The TLS secrets.
    updatedAt string
    The date and time of the last update of the TLS stage.
    wafStageId string
    The WAF stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    backend_stage_id str
    The backend stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    cache_stage_id str
    The cache stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    certificate_expires_at str
    The expiration date of the certificate.
    created_at str
    The date and time of the creation of the TLS stage.
    managed_certificate bool
    Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
    pipeline_id str
    The ID of the pipeline.
    project_id str
    project_id) The ID of the project the TLS stage is associated with.
    route_stage_id str
    The route stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    secrets Sequence[EdgeServicesTlsStageSecretArgs]
    The TLS secrets.
    updated_at str
    The date and time of the last update of the TLS stage.
    waf_stage_id str
    The WAF stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    backendStageId String
    The backend stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    cacheStageId String
    The cache stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    certificateExpiresAt String
    The expiration date of the certificate.
    createdAt String
    The date and time of the creation of the TLS stage.
    managedCertificate Boolean
    Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
    pipelineId String
    The ID of the pipeline.
    projectId String
    project_id) The ID of the project the TLS stage is associated with.
    routeStageId String
    The route stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.
    secrets List<Property Map>
    The TLS secrets.
    updatedAt String
    The date and time of the last update of the TLS stage.
    wafStageId String
    The WAF stage ID the TLS stage will be linked to. Only one of backend_stage_id, cache_stage_id, route_stage_id and waf_stage_id should be specified.

    Supporting Types

    EdgeServicesTlsStageSecret, EdgeServicesTlsStageSecretArgs

    Region string
    The region of the secret.
    SecretId string
    The ID of the Secret
    Region string
    The region of the secret.
    SecretId string
    The ID of the Secret
    region String
    The region of the secret.
    secretId String
    The ID of the Secret
    region string
    The region of the secret.
    secretId string
    The ID of the Secret
    region str
    The region of the secret.
    secret_id str
    The ID of the Secret
    region String
    The region of the secret.
    secretId String
    The ID of the Secret

    Import

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

    bash

    $ pulumi import scaleway:index/edgeServicesTlsStage:EdgeServicesTlsStage 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