getRegionSslCertificate

Get info about a Region Google Compute SSL Certificate from its name.

Example Usage

data "google_compute_region_ssl_certificate" "my_cert" {
name = "my-cert"
}
output "certificate" {
value = data.google_compute_region_ssl_certificate.my_cert.certificate
}
output "certificate_id" {
value = data.google_compute_region_ssl_certificate.my_cert.certificate_id
}
output "self_link" {
value = data.google_compute_region_ssl_certificate.my_cert.self_link
}

Return

A collection of values returned by getRegionSslCertificate.

Parameters

argument

A collection of arguments for invoking getRegionSslCertificate.


suspend fun getRegionSslCertificate(name: String, project: String? = null, region: String? = null): GetRegionSslCertificateResult

Return

A collection of values returned by getRegionSslCertificate.

Parameters

name

The name of the certificate.

project

The project in which the resource belongs. If it is not provided, the provider project is used.

region

The region in which the resource belongs. If it is not provided, the provider region is used.

See also


Return

A collection of values returned by getRegionSslCertificate.

Parameters

argument

Builder for com.pulumi.gcp.compute.kotlin.inputs.GetRegionSslCertificatePlainArgs.

See also