fastly.TlsPrivateKey
Explore with Pulumi AI
Uploads a Custom TLS Private Key to Fastly. This can be combined with a fastly.TlsCertificate
resource to provide a TLS Certificate able to be applied to a Fastly Service.
The Private Key resource requires a key in PEM format, and a name to identify it.
Example Usage
Basic usage:
import * as pulumi from "@pulumi/pulumi";
import * as fastly from "@pulumi/fastly";
import * as tls from "@pulumi/tls";
const demo = new tls.index.PrivateKey("demo", {algorithm: "RSA"});
const demoTlsPrivateKey = new fastly.TlsPrivateKey("demo", {
keyPem: demo.privateKeyPem,
name: "tf-demo",
});
import pulumi
import pulumi_fastly as fastly
import pulumi_tls as tls
demo = tls.index.PrivateKey("demo", algorithm=RSA)
demo_tls_private_key = fastly.TlsPrivateKey("demo",
key_pem=demo["privateKeyPem"],
name="tf-demo")
package main
import (
"github.com/pulumi/pulumi-fastly/sdk/v8/go/fastly"
"github.com/pulumi/pulumi-tls/sdk/v4/go/tls"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
demo, err := tls.NewPrivateKey(ctx, "demo", &tls.PrivateKeyArgs{
Algorithm: "RSA",
})
if err != nil {
return err
}
_, err = fastly.NewTlsPrivateKey(ctx, "demo", &fastly.TlsPrivateKeyArgs{
KeyPem: demo.PrivateKeyPem,
Name: pulumi.String("tf-demo"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fastly = Pulumi.Fastly;
using Tls = Pulumi.Tls;
return await Deployment.RunAsync(() =>
{
var demo = new Tls.Index.PrivateKey("demo", new()
{
Algorithm = "RSA",
});
var demoTlsPrivateKey = new Fastly.TlsPrivateKey("demo", new()
{
KeyPem = demo.PrivateKeyPem,
Name = "tf-demo",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tls.privateKey;
import com.pulumi.tls.PrivateKeyArgs;
import com.pulumi.fastly.TlsPrivateKey;
import com.pulumi.fastly.TlsPrivateKeyArgs;
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 demo = new PrivateKey("demo", PrivateKeyArgs.builder()
.algorithm("RSA")
.build());
var demoTlsPrivateKey = new TlsPrivateKey("demoTlsPrivateKey", TlsPrivateKeyArgs.builder()
.keyPem(demo.privateKeyPem())
.name("tf-demo")
.build());
}
}
resources:
demo:
type: tls:privateKey
properties:
algorithm: RSA
demoTlsPrivateKey:
type: fastly:TlsPrivateKey
name: demo
properties:
keyPem: ${demo.privateKeyPem}
name: tf-demo
Create TlsPrivateKey Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TlsPrivateKey(name: string, args: TlsPrivateKeyArgs, opts?: CustomResourceOptions);
@overload
def TlsPrivateKey(resource_name: str,
args: TlsPrivateKeyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TlsPrivateKey(resource_name: str,
opts: Optional[ResourceOptions] = None,
key_pem: Optional[str] = None,
name: Optional[str] = None)
func NewTlsPrivateKey(ctx *Context, name string, args TlsPrivateKeyArgs, opts ...ResourceOption) (*TlsPrivateKey, error)
public TlsPrivateKey(string name, TlsPrivateKeyArgs args, CustomResourceOptions? opts = null)
public TlsPrivateKey(String name, TlsPrivateKeyArgs args)
public TlsPrivateKey(String name, TlsPrivateKeyArgs args, CustomResourceOptions options)
type: fastly:TlsPrivateKey
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 TlsPrivateKeyArgs
- 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 TlsPrivateKeyArgs
- 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 TlsPrivateKeyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TlsPrivateKeyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TlsPrivateKeyArgs
- 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 tlsPrivateKeyResource = new Fastly.TlsPrivateKey("tlsPrivateKeyResource", new()
{
KeyPem = "string",
Name = "string",
});
example, err := fastly.NewTlsPrivateKey(ctx, "tlsPrivateKeyResource", &fastly.TlsPrivateKeyArgs{
KeyPem: pulumi.String("string"),
Name: pulumi.String("string"),
})
var tlsPrivateKeyResource = new TlsPrivateKey("tlsPrivateKeyResource", TlsPrivateKeyArgs.builder()
.keyPem("string")
.name("string")
.build());
tls_private_key_resource = fastly.TlsPrivateKey("tlsPrivateKeyResource",
key_pem="string",
name="string")
const tlsPrivateKeyResource = new fastly.TlsPrivateKey("tlsPrivateKeyResource", {
keyPem: "string",
name: "string",
});
type: fastly:TlsPrivateKey
properties:
keyPem: string
name: string
TlsPrivateKey Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The TlsPrivateKey resource accepts the following input properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the TlsPrivateKey resource produces the following output properties:
- Created
At string - Time-stamp (GMT) when the private key was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Key
Length int - The key length used to generate the private key.
- Key
Type string - The algorithm used to generate the private key. Must be RSA.
- Public
Key stringSha1 - Useful for safely identifying the key.
- Replace bool
- Whether Fastly recommends replacing this private key.
- Created
At string - Time-stamp (GMT) when the private key was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Key
Length int - The key length used to generate the private key.
- Key
Type string - The algorithm used to generate the private key. Must be RSA.
- Public
Key stringSha1 - Useful for safely identifying the key.
- Replace bool
- Whether Fastly recommends replacing this private key.
- created
At String - Time-stamp (GMT) when the private key was created.
- id String
- The provider-assigned unique ID for this managed resource.
- key
Length Integer - The key length used to generate the private key.
- key
Type String - The algorithm used to generate the private key. Must be RSA.
- public
Key StringSha1 - Useful for safely identifying the key.
- replace Boolean
- Whether Fastly recommends replacing this private key.
- created
At string - Time-stamp (GMT) when the private key was created.
- id string
- The provider-assigned unique ID for this managed resource.
- key
Length number - The key length used to generate the private key.
- key
Type string - The algorithm used to generate the private key. Must be RSA.
- public
Key stringSha1 - Useful for safely identifying the key.
- replace boolean
- Whether Fastly recommends replacing this private key.
- created_
at str - Time-stamp (GMT) when the private key was created.
- id str
- The provider-assigned unique ID for this managed resource.
- key_
length int - The key length used to generate the private key.
- key_
type str - The algorithm used to generate the private key. Must be RSA.
- public_
key_ strsha1 - Useful for safely identifying the key.
- replace bool
- Whether Fastly recommends replacing this private key.
- created
At String - Time-stamp (GMT) when the private key was created.
- id String
- The provider-assigned unique ID for this managed resource.
- key
Length Number - The key length used to generate the private key.
- key
Type String - The algorithm used to generate the private key. Must be RSA.
- public
Key StringSha1 - Useful for safely identifying the key.
- replace Boolean
- Whether Fastly recommends replacing this private key.
Look up Existing TlsPrivateKey Resource
Get an existing TlsPrivateKey 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?: TlsPrivateKeyState, opts?: CustomResourceOptions): TlsPrivateKey
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_at: Optional[str] = None,
key_length: Optional[int] = None,
key_pem: Optional[str] = None,
key_type: Optional[str] = None,
name: Optional[str] = None,
public_key_sha1: Optional[str] = None,
replace: Optional[bool] = None) -> TlsPrivateKey
func GetTlsPrivateKey(ctx *Context, name string, id IDInput, state *TlsPrivateKeyState, opts ...ResourceOption) (*TlsPrivateKey, error)
public static TlsPrivateKey Get(string name, Input<string> id, TlsPrivateKeyState? state, CustomResourceOptions? opts = null)
public static TlsPrivateKey get(String name, Output<String> id, TlsPrivateKeyState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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 - Time-stamp (GMT) when the private key was created.
- Key
Length int - The key length used to generate the private key.
- Key
Pem string - Private key in PEM format.
- Key
Type string - The algorithm used to generate the private key. Must be RSA.
- Name string
- Customisable name of the private key.
- Public
Key stringSha1 - Useful for safely identifying the key.
- Replace bool
- Whether Fastly recommends replacing this private key.
- Created
At string - Time-stamp (GMT) when the private key was created.
- Key
Length int - The key length used to generate the private key.
- Key
Pem string - Private key in PEM format.
- Key
Type string - The algorithm used to generate the private key. Must be RSA.
- Name string
- Customisable name of the private key.
- Public
Key stringSha1 - Useful for safely identifying the key.
- Replace bool
- Whether Fastly recommends replacing this private key.
- created
At String - Time-stamp (GMT) when the private key was created.
- key
Length Integer - The key length used to generate the private key.
- key
Pem String - Private key in PEM format.
- key
Type String - The algorithm used to generate the private key. Must be RSA.
- name String
- Customisable name of the private key.
- public
Key StringSha1 - Useful for safely identifying the key.
- replace Boolean
- Whether Fastly recommends replacing this private key.
- created
At string - Time-stamp (GMT) when the private key was created.
- key
Length number - The key length used to generate the private key.
- key
Pem string - Private key in PEM format.
- key
Type string - The algorithm used to generate the private key. Must be RSA.
- name string
- Customisable name of the private key.
- public
Key stringSha1 - Useful for safely identifying the key.
- replace boolean
- Whether Fastly recommends replacing this private key.
- created_
at str - Time-stamp (GMT) when the private key was created.
- key_
length int - The key length used to generate the private key.
- key_
pem str - Private key in PEM format.
- key_
type str - The algorithm used to generate the private key. Must be RSA.
- name str
- Customisable name of the private key.
- public_
key_ strsha1 - Useful for safely identifying the key.
- replace bool
- Whether Fastly recommends replacing this private key.
- created
At String - Time-stamp (GMT) when the private key was created.
- key
Length Number - The key length used to generate the private key.
- key
Pem String - Private key in PEM format.
- key
Type String - The algorithm used to generate the private key. Must be RSA.
- name String
- Customisable name of the private key.
- public
Key StringSha1 - Useful for safely identifying the key.
- replace Boolean
- Whether Fastly recommends replacing this private key.
Import
A Private Key can be imported using its ID, e.g.
$ pulumi import fastly:index/tlsPrivateKey:TlsPrivateKey demo xxxxxxxxxxx
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Fastly pulumi/pulumi-fastly
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
fastly
Terraform Provider.