Skip to content

Commit ba0b902

Browse files
committed
Fix test
1 parent a49c345 commit ba0b902

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

mmv1/templates/terraform/examples/backend_service_tls_settings.tf.tmpl

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,13 @@ resource "google_compute_backend_service" "{{$.PrimaryResourceId}}" {
66
protocol = "HTTPS"
77
tls_settings {
88
sni = "example.com"
9-
subjectAltNames = [
10-
{
9+
subject_alt_names {
1110
dns_name = "example.com"
12-
},
13-
{
11+
}
12+
subject_alt_names {
1413
uniform_resource_identifier = "https://example.com"
15-
}
16-
]
17-
authentication_config = [google_network_security_backend_authentication_config.default.id]
14+
}
15+
authentication_config = "//networksecurity.googleapis.com/${google_network_security_backend_authentication_config.default.id}"
1816
}
1917
}
2018

0 commit comments

Comments
 (0)