GetCertificate
Use this data source to retrieve information about a Rancher v2 certificate.
Depending of the availability, there are 2 types of Rancher v2 certificates:
- Project certificate: Available to all namespaces in the project_id
- Namespaced certificate: Available to just namespace_id in the project_id
Example Usage
using Pulumi;
using Rancher2 = Pulumi.Rancher2;
class MyStack : Stack
{
public MyStack()
{
var foo = Output.Create(Rancher2.GetCertificate.InvokeAsync(new Rancher2.GetCertificateArgs
{
Name = "<name>",
ProjectId = "<project_id>",
}));
}
}
Coming soon!
import pulumi
import pulumi_rancher2 as rancher2
foo = rancher2.get_certificate(name="<name>",
project_id="<project_id>")import * as pulumi from "@pulumi/pulumi";
import * as rancher2 from "@pulumi/rancher2";
// Retrieve a rancher2 Project Certificate
const foo = pulumi.output(rancher2.getCertificate({
name: "<name>",
projectId: "<project_id>",
}, { async: true }));Using GetCertificate
function getCertificate(args: GetCertificateArgs, opts?: InvokeOptions): Promise<GetCertificateResult>function get_certificate(name=None, namespace_id=None, project_id=None, opts=None)func LookupCertificate(ctx *Context, args *LookupCertificateArgs, opts ...InvokeOption) (*LookupCertificateResult, error)Note: This function is named
LookupCertificatein the Go SDK.
public static class GetCertificate {
public static Task<GetCertificateResult> InvokeAsync(GetCertificateArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
- name str
The name of the certificate (string)
- project_
id str The project id where to assign the certificate (string)
- namespace_
id str The namespace id where to assign the namespaced certificate (string)
GetCertificate Result
The following output properties are available:
- Annotations Dictionary<string, object>
(Computed) Annotations for certificate object (map)
- Certs string
(Computed) Base64 encoded certs (string)
- Description string
(Computed) A certificate description (string)
- Id string
The provider-assigned unique ID for this managed resource.
- Labels Dictionary<string, object>
(Computed) Labels for certificate object (map)
- Name string
- Project
Id string - Namespace
Id string
- Annotations map[string]interface{}
(Computed) Annotations for certificate object (map)
- Certs string
(Computed) Base64 encoded certs (string)
- Description string
(Computed) A certificate description (string)
- Id string
The provider-assigned unique ID for this managed resource.
- Labels map[string]interface{}
(Computed) Labels for certificate object (map)
- Name string
- Project
Id string - Namespace
Id string
- annotations {[key: string]: any}
(Computed) Annotations for certificate object (map)
- certs string
(Computed) Base64 encoded certs (string)
- description string
(Computed) A certificate description (string)
- id string
The provider-assigned unique ID for this managed resource.
- labels {[key: string]: any}
(Computed) Labels for certificate object (map)
- name string
- project
Id string - namespace
Id string
- annotations Dict[str, Any]
(Computed) Annotations for certificate object (map)
- certs str
(Computed) Base64 encoded certs (string)
- description str
(Computed) A certificate description (string)
- id str
The provider-assigned unique ID for this managed resource.
- labels Dict[str, Any]
(Computed) Labels for certificate object (map)
- name str
- project_
id str - namespace_
id str
Package Details
- Repository
- https://github.com/pulumi/pulumi-rancher2
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
rancher2Terraform Provider.