OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud
ovh.CloudProjectDatabase.getCertificates
Explore with Pulumi AI
Use this data source to get information about certificates of a cluster associated with a public cloud project.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ovh from "@pulumi/ovh";
const certificates = ovh.CloudProjectDatabase.getCertificates({
    serviceName: "XXX",
    engine: "YYY",
    clusterId: "ZZZ",
});
export const certificatesCa = certificates.then(certificates => certificates.ca);
import pulumi
import pulumi_ovh as ovh
certificates = ovh.CloudProjectDatabase.get_certificates(service_name="XXX",
    engine="YYY",
    cluster_id="ZZZ")
pulumi.export("certificatesCa", certificates.ca)
package main
import (
	"github.com/ovh/pulumi-ovh/sdk/v2/go/ovh/cloudprojectdatabase"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		certificates, err := cloudprojectdatabase.GetCertificates(ctx, &cloudprojectdatabase.GetCertificatesArgs{
			ServiceName: "XXX",
			Engine:      "YYY",
			ClusterId:   "ZZZ",
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("certificatesCa", certificates.Ca)
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ovh = Pulumi.Ovh;
return await Deployment.RunAsync(() => 
{
    var certificates = Ovh.CloudProjectDatabase.GetCertificates.Invoke(new()
    {
        ServiceName = "XXX",
        Engine = "YYY",
        ClusterId = "ZZZ",
    });
    return new Dictionary<string, object?>
    {
        ["certificatesCa"] = certificates.Apply(getCertificatesResult => getCertificatesResult.Ca),
    };
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ovh.CloudProjectDatabase.CloudProjectDatabaseFunctions;
import com.pulumi.ovh.CloudProjectDatabase.inputs.GetCertificatesArgs;
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 certificates = CloudProjectDatabaseFunctions.getCertificates(GetCertificatesArgs.builder()
            .serviceName("XXX")
            .engine("YYY")
            .clusterId("ZZZ")
            .build());
        ctx.export("certificatesCa", certificates.applyValue(getCertificatesResult -> getCertificatesResult.ca()));
    }
}
variables:
  certificates:
    fn::invoke:
      function: ovh:CloudProjectDatabase:getCertificates
      arguments:
        serviceName: XXX
        engine: YYY
        clusterId: ZZZ
outputs:
  certificatesCa: ${certificates.ca}
Using getCertificates
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 getCertificates(args: GetCertificatesArgs, opts?: InvokeOptions): Promise<GetCertificatesResult>
function getCertificatesOutput(args: GetCertificatesOutputArgs, opts?: InvokeOptions): Output<GetCertificatesResult>def get_certificates(cluster_id: Optional[str] = None,
                     engine: Optional[str] = None,
                     service_name: Optional[str] = None,
                     opts: Optional[InvokeOptions] = None) -> GetCertificatesResult
def get_certificates_output(cluster_id: Optional[pulumi.Input[str]] = None,
                     engine: Optional[pulumi.Input[str]] = None,
                     service_name: Optional[pulumi.Input[str]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[GetCertificatesResult]func GetCertificates(ctx *Context, args *GetCertificatesArgs, opts ...InvokeOption) (*GetCertificatesResult, error)
func GetCertificatesOutput(ctx *Context, args *GetCertificatesOutputArgs, opts ...InvokeOption) GetCertificatesResultOutput> Note: This function is named GetCertificates in the Go SDK.
public static class GetCertificates 
{
    public static Task<GetCertificatesResult> InvokeAsync(GetCertificatesArgs args, InvokeOptions? opts = null)
    public static Output<GetCertificatesResult> Invoke(GetCertificatesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetCertificatesResult> getCertificates(GetCertificatesArgs args, InvokeOptions options)
public static Output<GetCertificatesResult> getCertificates(GetCertificatesArgs args, InvokeOptions options)
fn::invoke:
  function: ovh:CloudProjectDatabase/getCertificates:getCertificates
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Cluster
Id string - Cluster ID
 - Engine string
 - The engine of the database cluster you want database information. To get a full list of available engine visit: public documentation. Available engines:
 - Service
Name string - The id of the public cloud project. If omitted,
the 
OVH_CLOUD_PROJECT_SERVICEenvironment variable is used. 
- Cluster
Id string - Cluster ID
 - Engine string
 - The engine of the database cluster you want database information. To get a full list of available engine visit: public documentation. Available engines:
 - Service
Name string - The id of the public cloud project. If omitted,
the 
OVH_CLOUD_PROJECT_SERVICEenvironment variable is used. 
- cluster
Id String - Cluster ID
 - engine String
 - The engine of the database cluster you want database information. To get a full list of available engine visit: public documentation. Available engines:
 - service
Name String - The id of the public cloud project. If omitted,
the 
OVH_CLOUD_PROJECT_SERVICEenvironment variable is used. 
- cluster
Id string - Cluster ID
 - engine string
 - The engine of the database cluster you want database information. To get a full list of available engine visit: public documentation. Available engines:
 - service
Name string - The id of the public cloud project. If omitted,
the 
OVH_CLOUD_PROJECT_SERVICEenvironment variable is used. 
- cluster_
id str - Cluster ID
 - engine str
 - The engine of the database cluster you want database information. To get a full list of available engine visit: public documentation. Available engines:
 - service_
name str - The id of the public cloud project. If omitted,
the 
OVH_CLOUD_PROJECT_SERVICEenvironment variable is used. 
- cluster
Id String - Cluster ID
 - engine String
 - The engine of the database cluster you want database information. To get a full list of available engine visit: public documentation. Available engines:
 - service
Name String - The id of the public cloud project. If omitted,
the 
OVH_CLOUD_PROJECT_SERVICEenvironment variable is used. 
getCertificates Result
The following output properties are available:
- Ca string
 - CA certificate used for the service.
 - Cluster
Id string - See Argument Reference above.
 - Engine string
 - See Argument Reference above.
 - Id string
 - The provider-assigned unique ID for this managed resource.
 - Service
Name string - See Argument Reference above.
 
- Ca string
 - CA certificate used for the service.
 - Cluster
Id string - See Argument Reference above.
 - Engine string
 - See Argument Reference above.
 - Id string
 - The provider-assigned unique ID for this managed resource.
 - Service
Name string - See Argument Reference above.
 
- ca String
 - CA certificate used for the service.
 - cluster
Id String - See Argument Reference above.
 - engine String
 - See Argument Reference above.
 - id String
 - The provider-assigned unique ID for this managed resource.
 - service
Name String - See Argument Reference above.
 
- ca string
 - CA certificate used for the service.
 - cluster
Id string - See Argument Reference above.
 - engine string
 - See Argument Reference above.
 - id string
 - The provider-assigned unique ID for this managed resource.
 - service
Name string - See Argument Reference above.
 
- ca str
 - CA certificate used for the service.
 - cluster_
id str - See Argument Reference above.
 - engine str
 - See Argument Reference above.
 - id str
 - The provider-assigned unique ID for this managed resource.
 - service_
name str - See Argument Reference above.
 
- ca String
 - CA certificate used for the service.
 - cluster
Id String - See Argument Reference above.
 - engine String
 - See Argument Reference above.
 - id String
 - The provider-assigned unique ID for this managed resource.
 - service
Name String - See Argument Reference above.
 
Package Details
- Repository
 - ovh ovh/pulumi-ovh
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
ovhTerraform Provider.