We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a49c345 commit ba0b902Copy full SHA for ba0b902
mmv1/templates/terraform/examples/backend_service_tls_settings.tf.tmpl
@@ -6,15 +6,13 @@ resource "google_compute_backend_service" "{{$.PrimaryResourceId}}" {
6
protocol = "HTTPS"
7
tls_settings {
8
sni = "example.com"
9
- subjectAltNames = [
10
- {
+ subject_alt_names {
11
dns_name = "example.com"
12
- },
13
+ }
14
uniform_resource_identifier = "https://example.com"
15
- }
16
- ]
17
- authentication_config = [google_network_security_backend_authentication_config.default.id]
+ authentication_config = "//networksecurity.googleapis.com/${google_network_security_backend_authentication_config.default.id}"
18
}
19
20
0 commit comments