outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale
outscale.getCa
Explore with Pulumi AI
Provides information about a Certificate Authority (CA).
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const ca01 = outscale.getCa({
filters: [{
name: "ca_ids",
values: ["ca-12345678"],
}],
});
import pulumi
import pulumi_outscale as outscale
ca01 = outscale.get_ca(filters=[{
"name": "ca_ids",
"values": ["ca-12345678"],
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.LookupCa(ctx, &outscale.LookupCaArgs{
Filters: []outscale.GetCaFilter{
{
Name: "ca_ids",
Values: []string{
"ca-12345678",
},
},
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var ca01 = Outscale.GetCa.Invoke(new()
{
Filters = new[]
{
new Outscale.Inputs.GetCaFilterInputArgs
{
Name = "ca_ids",
Values = new[]
{
"ca-12345678",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.OutscaleFunctions;
import com.pulumi.outscale.inputs.GetCaArgs;
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 ca01 = OutscaleFunctions.getCa(GetCaArgs.builder()
.filters(GetCaFilterArgs.builder()
.name("ca_ids")
.values("ca-12345678")
.build())
.build());
}
}
variables:
ca01:
fn::invoke:
function: outscale:getCa
arguments:
filters:
- name: ca_ids
values:
- ca-12345678
Using getCa
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 getCa(args: GetCaArgs, opts?: InvokeOptions): Promise<GetCaResult>
function getCaOutput(args: GetCaOutputArgs, opts?: InvokeOptions): Output<GetCaResult>
def get_ca(filters: Optional[Sequence[GetCaFilter]] = None,
id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetCaResult
def get_ca_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetCaFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetCaResult]
func LookupCa(ctx *Context, args *LookupCaArgs, opts ...InvokeOption) (*LookupCaResult, error)
func LookupCaOutput(ctx *Context, args *LookupCaOutputArgs, opts ...InvokeOption) LookupCaResultOutput
> Note: This function is named LookupCa
in the Go SDK.
public static class GetCa
{
public static Task<GetCaResult> InvokeAsync(GetCaArgs args, InvokeOptions? opts = null)
public static Output<GetCaResult> Invoke(GetCaInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetCaResult> getCa(GetCaArgs args, InvokeOptions options)
public static Output<GetCaResult> getCa(GetCaArgs args, InvokeOptions options)
fn::invoke:
function: outscale:index/getCa:getCa
arguments:
# arguments dictionary
The following arguments are supported:
- Filters
List<Get
Ca Filter> - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- Id string
- Filters
[]Get
Ca Filter - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- Id string
- filters
List<Get
Ca Filter> - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- id String
- filters
Get
Ca Filter[] - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- id string
- filters
Sequence[Get
Ca Filter] - A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- id str
- filters List<Property Map>
- A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
- id String
getCa Result
The following output properties are available:
- Ca
Fingerprint string - The fingerprint of the CA.
- Ca
Id string - The ID of the CA.
- Ca
Pem string - Description string
- The description of the CA.
- Id string
- Request
Id string - Filters
List<Get
Ca Filter>
- Ca
Fingerprint string - The fingerprint of the CA.
- Ca
Id string - The ID of the CA.
- Ca
Pem string - Description string
- The description of the CA.
- Id string
- Request
Id string - Filters
[]Get
Ca Filter
- ca
Fingerprint String - The fingerprint of the CA.
- ca
Id String - The ID of the CA.
- ca
Pem String - description String
- The description of the CA.
- id String
- request
Id String - filters
List<Get
Ca Filter>
- ca
Fingerprint string - The fingerprint of the CA.
- ca
Id string - The ID of the CA.
- ca
Pem string - description string
- The description of the CA.
- id string
- request
Id string - filters
Get
Ca Filter[]
- ca_
fingerprint str - The fingerprint of the CA.
- ca_
id str - The ID of the CA.
- ca_
pem str - description str
- The description of the CA.
- id str
- request_
id str - filters
Sequence[Get
Ca Filter]
- ca
Fingerprint String - The fingerprint of the CA.
- ca
Id String - The ID of the CA.
- ca
Pem String - description String
- The description of the CA.
- id String
- request
Id String - filters List<Property Map>
Supporting Types
GetCaFilter
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.