lxd.TrustCertificate
Explore with Pulumi AI
# lxd.TrustCertificate
The lxd.TrustCertificate
resource allows you to register new client certificates in the LXD trust store.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as lxd from "@pulumi/lxd";
const cert1 = new lxd.TrustCertificate("cert1", {path: "/path/to/cert"});
const cert2 = new lxd.TrustCertificate("cert2", {content: `-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
`});
import pulumi
import pulumi_lxd as lxd
cert1 = lxd.TrustCertificate("cert1", path="/path/to/cert")
cert2 = lxd.TrustCertificate("cert2", content="""-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
""")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/lxd/v2/lxd"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := lxd.NewTrustCertificate(ctx, "cert1", &lxd.TrustCertificateArgs{
Path: pulumi.String("/path/to/cert"),
})
if err != nil {
return err
}
_, err = lxd.NewTrustCertificate(ctx, "cert2", &lxd.TrustCertificateArgs{
Content: pulumi.String("-----BEGIN CERTIFICATE-----\n...\n-----END CERTIFICATE-----\n\n"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Lxd = Pulumi.Lxd;
return await Deployment.RunAsync(() =>
{
var cert1 = new Lxd.TrustCertificate("cert1", new()
{
Path = "/path/to/cert",
});
var cert2 = new Lxd.TrustCertificate("cert2", new()
{
Content = @"-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.lxd.TrustCertificate;
import com.pulumi.lxd.TrustCertificateArgs;
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 cert1 = new TrustCertificate("cert1", TrustCertificateArgs.builder()
.path("/path/to/cert")
.build());
var cert2 = new TrustCertificate("cert2", TrustCertificateArgs.builder()
.content("""
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
""")
.build());
}
}
resources:
cert1:
type: lxd:TrustCertificate
properties:
path: /path/to/cert
cert2:
type: lxd:TrustCertificate
properties:
content: |+
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
Notes
- See the LXD documentation for more information on client certificates.
Create TrustCertificate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TrustCertificate(name: string, args?: TrustCertificateArgs, opts?: CustomResourceOptions);
@overload
def TrustCertificate(resource_name: str,
args: Optional[TrustCertificateArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def TrustCertificate(resource_name: str,
opts: Optional[ResourceOptions] = None,
content: Optional[str] = None,
name: Optional[str] = None,
path: Optional[str] = None,
projects: Optional[Sequence[str]] = None,
remote: Optional[str] = None,
type: Optional[str] = None)
func NewTrustCertificate(ctx *Context, name string, args *TrustCertificateArgs, opts ...ResourceOption) (*TrustCertificate, error)
public TrustCertificate(string name, TrustCertificateArgs? args = null, CustomResourceOptions? opts = null)
public TrustCertificate(String name, TrustCertificateArgs args)
public TrustCertificate(String name, TrustCertificateArgs args, CustomResourceOptions options)
type: lxd:TrustCertificate
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 TrustCertificateArgs
- 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 TrustCertificateArgs
- 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 TrustCertificateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TrustCertificateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TrustCertificateArgs
- 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 trustCertificateResource = new Lxd.TrustCertificate("trustCertificateResource", new()
{
Content = "string",
Name = "string",
Path = "string",
Projects = new[]
{
"string",
},
Remote = "string",
Type = "string",
});
example, err := lxd.NewTrustCertificate(ctx, "trustCertificateResource", &lxd.TrustCertificateArgs{
Content: pulumi.String("string"),
Name: pulumi.String("string"),
Path: pulumi.String("string"),
Projects: pulumi.StringArray{
pulumi.String("string"),
},
Remote: pulumi.String("string"),
Type: pulumi.String("string"),
})
var trustCertificateResource = new TrustCertificate("trustCertificateResource", TrustCertificateArgs.builder()
.content("string")
.name("string")
.path("string")
.projects("string")
.remote("string")
.type("string")
.build());
trust_certificate_resource = lxd.TrustCertificate("trustCertificateResource",
content="string",
name="string",
path="string",
projects=["string"],
remote="string",
type="string")
const trustCertificateResource = new lxd.TrustCertificate("trustCertificateResource", {
content: "string",
name: "string",
path: "string",
projects: ["string"],
remote: "string",
type: "string",
});
type: lxd:TrustCertificate
properties:
content: string
name: string
path: string
projects:
- string
remote: string
type: string
TrustCertificate 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 TrustCertificate resource accepts the following input properties:
- Content string
- Content of the client certificate.
- Name string
- Required - Name of the certificate.
- Path string
- Required unless content is used - The path to a file containing a certificate.
- Projects List<string>
- Optional - List of projects to restrict the certificate to.
- Remote string
- Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
- Type string
- Optional - Certificate type. Can be either
client
ormetrics
. Defaults toclient
.
- Content string
- Content of the client certificate.
- Name string
- Required - Name of the certificate.
- Path string
- Required unless content is used - The path to a file containing a certificate.
- Projects []string
- Optional - List of projects to restrict the certificate to.
- Remote string
- Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
- Type string
- Optional - Certificate type. Can be either
client
ormetrics
. Defaults toclient
.
- content String
- Content of the client certificate.
- name String
- Required - Name of the certificate.
- path String
- Required unless content is used - The path to a file containing a certificate.
- projects List<String>
- Optional - List of projects to restrict the certificate to.
- remote String
- Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
- type String
- Optional - Certificate type. Can be either
client
ormetrics
. Defaults toclient
.
- content string
- Content of the client certificate.
- name string
- Required - Name of the certificate.
- path string
- Required unless content is used - The path to a file containing a certificate.
- projects string[]
- Optional - List of projects to restrict the certificate to.
- remote string
- Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
- type string
- Optional - Certificate type. Can be either
client
ormetrics
. Defaults toclient
.
- content str
- Content of the client certificate.
- name str
- Required - Name of the certificate.
- path str
- Required unless content is used - The path to a file containing a certificate.
- projects Sequence[str]
- Optional - List of projects to restrict the certificate to.
- remote str
- Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
- type str
- Optional - Certificate type. Can be either
client
ormetrics
. Defaults toclient
.
- content String
- Content of the client certificate.
- name String
- Required - Name of the certificate.
- path String
- Required unless content is used - The path to a file containing a certificate.
- projects List<String>
- Optional - List of projects to restrict the certificate to.
- remote String
- Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
- type String
- Optional - Certificate type. Can be either
client
ormetrics
. Defaults toclient
.
Outputs
All input properties are implicitly available as output properties. Additionally, the TrustCertificate resource produces the following output properties:
- Fingerprint string
- The unique hash fingerprint of the certificate.
- Id string
- The provider-assigned unique ID for this managed resource.
- Fingerprint string
- The unique hash fingerprint of the certificate.
- Id string
- The provider-assigned unique ID for this managed resource.
- fingerprint String
- The unique hash fingerprint of the certificate.
- id String
- The provider-assigned unique ID for this managed resource.
- fingerprint string
- The unique hash fingerprint of the certificate.
- id string
- The provider-assigned unique ID for this managed resource.
- fingerprint str
- The unique hash fingerprint of the certificate.
- id str
- The provider-assigned unique ID for this managed resource.
- fingerprint String
- The unique hash fingerprint of the certificate.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing TrustCertificate Resource
Get an existing TrustCertificate 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?: TrustCertificateState, opts?: CustomResourceOptions): TrustCertificate
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
content: Optional[str] = None,
fingerprint: Optional[str] = None,
name: Optional[str] = None,
path: Optional[str] = None,
projects: Optional[Sequence[str]] = None,
remote: Optional[str] = None,
type: Optional[str] = None) -> TrustCertificate
func GetTrustCertificate(ctx *Context, name string, id IDInput, state *TrustCertificateState, opts ...ResourceOption) (*TrustCertificate, error)
public static TrustCertificate Get(string name, Input<string> id, TrustCertificateState? state, CustomResourceOptions? opts = null)
public static TrustCertificate get(String name, Output<String> id, TrustCertificateState state, CustomResourceOptions options)
resources: _: type: lxd:TrustCertificate 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.
- Content string
- Content of the client certificate.
- Fingerprint string
- The unique hash fingerprint of the certificate.
- Name string
- Required - Name of the certificate.
- Path string
- Required unless content is used - The path to a file containing a certificate.
- Projects List<string>
- Optional - List of projects to restrict the certificate to.
- Remote string
- Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
- Type string
- Optional - Certificate type. Can be either
client
ormetrics
. Defaults toclient
.
- Content string
- Content of the client certificate.
- Fingerprint string
- The unique hash fingerprint of the certificate.
- Name string
- Required - Name of the certificate.
- Path string
- Required unless content is used - The path to a file containing a certificate.
- Projects []string
- Optional - List of projects to restrict the certificate to.
- Remote string
- Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
- Type string
- Optional - Certificate type. Can be either
client
ormetrics
. Defaults toclient
.
- content String
- Content of the client certificate.
- fingerprint String
- The unique hash fingerprint of the certificate.
- name String
- Required - Name of the certificate.
- path String
- Required unless content is used - The path to a file containing a certificate.
- projects List<String>
- Optional - List of projects to restrict the certificate to.
- remote String
- Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
- type String
- Optional - Certificate type. Can be either
client
ormetrics
. Defaults toclient
.
- content string
- Content of the client certificate.
- fingerprint string
- The unique hash fingerprint of the certificate.
- name string
- Required - Name of the certificate.
- path string
- Required unless content is used - The path to a file containing a certificate.
- projects string[]
- Optional - List of projects to restrict the certificate to.
- remote string
- Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
- type string
- Optional - Certificate type. Can be either
client
ormetrics
. Defaults toclient
.
- content str
- Content of the client certificate.
- fingerprint str
- The unique hash fingerprint of the certificate.
- name str
- Required - Name of the certificate.
- path str
- Required unless content is used - The path to a file containing a certificate.
- projects Sequence[str]
- Optional - List of projects to restrict the certificate to.
- remote str
- Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
- type str
- Optional - Certificate type. Can be either
client
ormetrics
. Defaults toclient
.
- content String
- Content of the client certificate.
- fingerprint String
- The unique hash fingerprint of the certificate.
- name String
- Required - Name of the certificate.
- path String
- Required unless content is used - The path to a file containing a certificate.
- projects List<String>
- Optional - List of projects to restrict the certificate to.
- remote String
- Optional - The remote in which the resource will be created. If not provided, the provider's default remote will be used.
- type String
- Optional - Certificate type. Can be either
client
ormetrics
. Defaults toclient
.
Package Details
- Repository
- lxd terraform-lxd/terraform-provider-lxd
- License
- Notes
- This Pulumi package is based on the
lxd
Terraform Provider.