0
0
llucycodes42
The code creates a Google Compute SSL Certificate named "example-name" with the following properties:
name: "example-name"
description: "example-description"
private_key: "path/to/private.key"
certificate: "path/to/certificate.
Shortcut: tf_google_compute_ssl_certificate
resource "google_compute_ssl_certificate" "${MyResource}" {
name = "example-name"
description = "example-description"
private_key = "\${file("path/to/private.key")}"
certificate = "\${file("path/to/certificate.crt")}
}