Google Cloud Classic v8.3.1 published on Wednesday, Sep 25, 2024 by Pulumi
gcp.compute.getCertificate
Explore with Pulumi AI
Get info about a Google Compute SSL Certificate from its name.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const myCert = gcp.compute.getCertificate({
name: "my-cert",
});
export const certificate = myCert.then(myCert => myCert.certificate);
export const certificateId = myCert.then(myCert => myCert.certificateId);
export const selfLink = myCert.then(myCert => myCert.selfLink);
import pulumi
import pulumi_gcp as gcp
my_cert = gcp.compute.get_certificate(name="my-cert")
pulumi.export("certificate", my_cert.certificate)
pulumi.export("certificateId", my_cert.certificate_id)
pulumi.export("selfLink", my_cert.self_link)
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
myCert, err := compute.GetCertificate(ctx, &compute.GetCertificateArgs{
Name: "my-cert",
}, nil)
if err != nil {
return err
}
ctx.Export("certificate", myCert.Certificate)
ctx.Export("certificateId", myCert.CertificateId)
ctx.Export("selfLink", myCert.SelfLink)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var myCert = Gcp.Compute.GetCertificate.Invoke(new()
{
Name = "my-cert",
});
return new Dictionary<string, object?>
{
["certificate"] = myCert.Apply(getCertificateResult => getCertificateResult.Certificate),
["certificateId"] = myCert.Apply(getCertificateResult => getCertificateResult.CertificateId),
["selfLink"] = myCert.Apply(getCertificateResult => getCertificateResult.SelfLink),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.ComputeFunctions;
import com.pulumi.gcp.compute.inputs.GetCertificateArgs;
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) {
final var myCert = ComputeFunctions.getCertificate(GetCertificateArgs.builder()
.name("my-cert")
.build());
ctx.export("certificate", myCert.applyValue(getCertificateResult -> getCertificateResult.certificate()));
ctx.export("certificateId", myCert.applyValue(getCertificateResult -> getCertificateResult.certificateId()));
ctx.export("selfLink", myCert.applyValue(getCertificateResult -> getCertificateResult.selfLink()));
}
}
variables:
myCert:
fn::invoke:
Function: gcp:compute:getCertificate
Arguments:
name: my-cert
outputs:
certificate: ${myCert.certificate}
certificateId: ${myCert.certificateId}
selfLink: ${myCert.selfLink}
Using getCertificate
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getCertificate(args: GetCertificateArgs, opts?: InvokeOptions): Promise<GetCertificateResult>
function getCertificateOutput(args: GetCertificateOutputArgs, opts?: InvokeOptions): Output<GetCertificateResult>
def get_certificate(name: Optional[str] = None,
project: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetCertificateResult
def get_certificate_output(name: Optional[pulumi.Input[str]] = None,
project: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetCertificateResult]
func GetCertificate(ctx *Context, args *GetCertificateArgs, opts ...InvokeOption) (*GetCertificateResult, error)
func GetCertificateOutput(ctx *Context, args *GetCertificateOutputArgs, opts ...InvokeOption) GetCertificateResultOutput
> Note: This function is named GetCertificate
in the Go SDK.
public static class GetCertificate
{
public static Task<GetCertificateResult> InvokeAsync(GetCertificateArgs args, InvokeOptions? opts = null)
public static Output<GetCertificateResult> Invoke(GetCertificateInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetCertificateResult> getCertificate(GetCertificateArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: gcp:compute/getCertificate:getCertificate
arguments:
# arguments dictionary
The following arguments are supported:
getCertificate Result
The following output properties are available:
- Certificate string
- Certificate
Id int - Creation
Timestamp string - Description string
- Expire
Time string - Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name
Prefix string - Private
Key string - Self
Link string - Project string
- Certificate string
- Certificate
Id int - Creation
Timestamp string - Description string
- Expire
Time string - Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name
Prefix string - Private
Key string - Self
Link string - Project string
- certificate String
- certificate
Id Integer - creation
Timestamp String - description String
- expire
Time String - id String
- The provider-assigned unique ID for this managed resource.
- name String
- name
Prefix String - private
Key String - self
Link String - project String
- certificate string
- certificate
Id number - creation
Timestamp string - description string
- expire
Time string - id string
- The provider-assigned unique ID for this managed resource.
- name string
- name
Prefix string - private
Key string - self
Link string - project string
- certificate str
- certificate_
id int - creation_
timestamp str - description str
- expire_
time str - id str
- The provider-assigned unique ID for this managed resource.
- name str
- name_
prefix str - private_
key str - self_
link str - project str
- certificate String
- certificate
Id Number - creation
Timestamp String - description String
- expire
Time String - id String
- The provider-assigned unique ID for this managed resource.
- name String
- name
Prefix String - private
Key String - self
Link String - project String
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-beta
Terraform Provider.