scaleway.EdgeServicesTlsStage
Explore with Pulumi AI
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:
- Pipeline
Id string - The ID of the pipeline.
- Backend
Stage stringId - The backend stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - Cache
Stage stringId - The cache stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_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 string project_id
) The ID of the project the TLS stage is associated with.- Route
Stage stringId - The route stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - Secrets
List<Pulumiverse.
Scaleway. Inputs. Edge Services Tls Stage Secret> - The TLS secrets.
- Waf
Stage stringId - The WAF stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified.
- Pipeline
Id string - The ID of the pipeline.
- Backend
Stage stringId - The backend stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - Cache
Stage stringId - The cache stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_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 string project_id
) The ID of the project the TLS stage is associated with.- Route
Stage stringId - The route stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - Secrets
[]Edge
Services Tls Stage Secret Args - The TLS secrets.
- Waf
Stage stringId - The WAF stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified.
- pipeline
Id String - The ID of the pipeline.
- backend
Stage StringId - The backend stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - cache
Stage StringId - The cache stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - managed
Certificate Boolean - Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
- project
Id String project_id
) The ID of the project the TLS stage is associated with.- route
Stage StringId - The route stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - secrets
List<Edge
Services Tls Stage Secret> - The TLS secrets.
- waf
Stage StringId - The WAF stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified.
- pipeline
Id string - The ID of the pipeline.
- backend
Stage stringId - The backend stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - cache
Stage stringId - The cache stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - managed
Certificate boolean - Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
- project
Id string project_id
) The ID of the project the TLS stage is associated with.- route
Stage stringId - The route stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - secrets
Edge
Services Tls Stage Secret[] - The TLS secrets.
- waf
Stage stringId - The WAF stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified.
- pipeline_
id str - The ID of the pipeline.
- backend_
stage_ strid - The backend stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - cache_
stage_ strid - The cache stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_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_ strid - The route stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - secrets
Sequence[Edge
Services Tls Stage Secret Args] - The TLS secrets.
- waf_
stage_ strid - The WAF stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified.
- pipeline
Id String - The ID of the pipeline.
- backend
Stage StringId - The backend stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - cache
Stage StringId - The cache stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - managed
Certificate Boolean - Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
- project
Id String project_id
) The ID of the project the TLS stage is associated with.- route
Stage StringId - The route stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - secrets List<Property Map>
- The TLS secrets.
- waf
Stage StringId - The WAF stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified.
Outputs
All input properties are implicitly available as output properties. Additionally, the EdgeServicesTlsStage resource produces the following output properties:
- Certificate
Expires stringAt - The expiration date of the certificate.
- Created
At string - The date and time of the creation of the TLS stage.
- Id string
- The provider-assigned unique ID for this managed resource.
- Updated
At string - The date and time of the last update of the TLS stage.
- Certificate
Expires stringAt - The expiration date of the certificate.
- Created
At string - The date and time of the creation of the TLS stage.
- Id string
- The provider-assigned unique ID for this managed resource.
- Updated
At string - The date and time of the last update of the TLS stage.
- certificate
Expires StringAt - The expiration date of the certificate.
- created
At String - The date and time of the creation of the TLS stage.
- id String
- The provider-assigned unique ID for this managed resource.
- updated
At String - The date and time of the last update of the TLS stage.
- certificate
Expires stringAt - The expiration date of the certificate.
- created
At string - The date and time of the creation of the TLS stage.
- id string
- The provider-assigned unique ID for this managed resource.
- updated
At string - The date and time of the last update of the TLS stage.
- certificate_
expires_ strat - 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.
- certificate
Expires StringAt - The expiration date of the certificate.
- created
At String - The date and time of the creation of the TLS stage.
- id String
- The provider-assigned unique ID for this managed resource.
- updated
At 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.
- Backend
Stage stringId - The backend stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - Cache
Stage stringId - The cache stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - Certificate
Expires stringAt - The expiration date of the certificate.
- Created
At string - 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 string - The ID of the pipeline.
- Project
Id string project_id
) The ID of the project the TLS stage is associated with.- Route
Stage stringId - The route stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - Secrets
List<Pulumiverse.
Scaleway. Inputs. Edge Services Tls Stage Secret> - The TLS secrets.
- Updated
At string - The date and time of the last update of the TLS stage.
- Waf
Stage stringId - The WAF stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified.
- Backend
Stage stringId - The backend stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - Cache
Stage stringId - The cache stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - Certificate
Expires stringAt - The expiration date of the certificate.
- Created
At string - 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 string - The ID of the pipeline.
- Project
Id string project_id
) The ID of the project the TLS stage is associated with.- Route
Stage stringId - The route stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - Secrets
[]Edge
Services Tls Stage Secret Args - The TLS secrets.
- Updated
At string - The date and time of the last update of the TLS stage.
- Waf
Stage stringId - The WAF stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified.
- backend
Stage StringId - The backend stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - cache
Stage StringId - The cache stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - certificate
Expires StringAt - The expiration date of the certificate.
- created
At String - The date and time of the creation of the TLS stage.
- managed
Certificate Boolean - Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
- pipeline
Id String - The ID of the pipeline.
- project
Id String project_id
) The ID of the project the TLS stage is associated with.- route
Stage StringId - The route stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - secrets
List<Edge
Services Tls Stage Secret> - The TLS secrets.
- updated
At String - The date and time of the last update of the TLS stage.
- waf
Stage StringId - The WAF stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified.
- backend
Stage stringId - The backend stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - cache
Stage stringId - The cache stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - certificate
Expires stringAt - The expiration date of the certificate.
- created
At string - The date and time of the creation of the TLS stage.
- managed
Certificate boolean - Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
- pipeline
Id string - The ID of the pipeline.
- project
Id string project_id
) The ID of the project the TLS stage is associated with.- route
Stage stringId - The route stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - secrets
Edge
Services Tls Stage Secret[] - The TLS secrets.
- updated
At string - The date and time of the last update of the TLS stage.
- waf
Stage stringId - The WAF stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified.
- backend_
stage_ strid - The backend stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - cache_
stage_ strid - The cache stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - certificate_
expires_ strat - 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_ strid - The route stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - secrets
Sequence[Edge
Services Tls Stage Secret Args] - The TLS secrets.
- updated_
at str - The date and time of the last update of the TLS stage.
- waf_
stage_ strid - The WAF stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified.
- backend
Stage StringId - The backend stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - cache
Stage StringId - The cache stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - certificate
Expires StringAt - The expiration date of the certificate.
- created
At String - The date and time of the creation of the TLS stage.
- managed
Certificate Boolean - Set to true when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint.
- pipeline
Id String - The ID of the pipeline.
- project
Id String project_id
) The ID of the project the TLS stage is associated with.- route
Stage StringId - The route stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified. - secrets List<Property Map>
- The TLS secrets.
- updated
At String - The date and time of the last update of the TLS stage.
- waf
Stage StringId - The WAF stage ID the TLS stage will be linked to. Only one of
backend_stage_id
,cache_stage_id
,route_stage_id
andwaf_stage_id
should be specified.
Supporting Types
EdgeServicesTlsStageSecret, EdgeServicesTlsStageSecretArgs
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.