0
0
llucycodes42
This code creates a resource called "example-name" that is associated with a description called "example-description" and specifies a proxy to be used for accessing the Google Compute Engine servers. The proxy is set to use the specific self-link for the certificates file.
Shortcut: tf_google_compute_target_https_proxy
resource "google_compute_target_https_proxy" "${MyResource}" {
name = "example-name"
description = "example-description"
url_map = "\${google_compute_url_map.default.self_link}"
ssl_certificates = ["\${google_compute_ssl_certificate.default.self_link}"]
}