blob: bbf3331d7fb35cf685f6b7a5fdfafab1bac94c98 [file] [log] [blame] [edit]
---
subcategory: "Compute Engine"
description: |-
Get info about a Google Compute SSL Certificate.
---
# google_compute_ssl_certificate
Get info about a Google Compute SSL Certificate from its name.
## Example Usage
```tf
data "google_compute_ssl_certificate" "my_cert" {
name = "my-cert"
}
output "certificate" {
value = data.google_compute_ssl_certificate.my_cert.certificate
}
output "certificate_id" {
value = data.google_compute_ssl_certificate.my_cert.certificate_id
}
output "self_link" {
value = data.google_compute_ssl_certificate.my_cert.self_link
}
```
## Argument Reference
The following arguments are supported:
* `name` (Required) - The name of the certificate.
- - -
* `project` - (Optional) The project in which the resource belongs. If it
is not provided, the provider project is used.
## Attributes Reference
See [google_compute_ssl_certificate](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/compute_ssl_certificate) resource for details of the available attributes.