File tree Expand file tree Collapse file tree
network_services_tls_route_basic
network_services_tls_route_gateway_basic
network_services_tls_route_mesh_basic Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11resource "google_compute_backend_service" "default" {
2- name = " my-backend-service-${ local . name_suffix } "
3- health_checks = [google_compute_http_health_check . default . id ]
2+ name = " my-backend-service-${ local . name_suffix } "
3+ load_balancing_scheme = " INTERNAL_SELF_MANAGED"
4+ health_checks = [google_compute_health_check . default . id ]
45}
56
6- resource "google_compute_http_health_check" "default" {
7- name = " backend-service-health-check-${ local . name_suffix } "
8- request_path = " /"
9- check_interval_sec = 1
10- timeout_sec = 1
7+ resource "google_compute_health_check" "default" {
8+ name = " backend-service-health-check-${ local . name_suffix } "
9+
10+ https_health_check {
11+ port = 443
12+ }
1113}
1214
1315resource "google_network_services_tls_route" "default" {
Original file line number Diff line number Diff line change 11resource "google_compute_backend_service" "default" {
2- name = " my-backend-service-${ local . name_suffix } "
3- health_checks = [google_compute_http_health_check . default . id ]
2+ name = " my-backend-service-${ local . name_suffix } "
3+ load_balancing_scheme = " INTERNAL_SELF_MANAGED"
4+ health_checks = [google_compute_health_check . default . id ]
45}
56
6- resource "google_compute_http_health_check" "default" {
7- name = " backend-service-health-check-${ local . name_suffix } "
8- request_path = " /"
9- check_interval_sec = 1
10- timeout_sec = 1
7+ resource "google_compute_health_check" "default" {
8+ name = " backend-service-health-check-${ local . name_suffix } "
9+
10+ https_health_check {
11+ port = 443
12+ }
1113}
1214
1315resource "google_network_services_gateway" "default" {
Original file line number Diff line number Diff line change 11resource "google_compute_backend_service" "default" {
2- name = " my-backend-service-${ local . name_suffix } "
3- health_checks = [google_compute_http_health_check . default . id ]
2+ name = " my-backend-service-${ local . name_suffix } "
3+ load_balancing_scheme = " INTERNAL_SELF_MANAGED"
4+ health_checks = [google_compute_health_check . default . id ]
45}
56
6- resource "google_compute_http_health_check" "default" {
7- name = " backend-service-health-check-${ local . name_suffix } "
8- request_path = " /"
9- check_interval_sec = 1
10- timeout_sec = 1
7+ resource "google_compute_health_check" "default" {
8+ name = " backend-service-health-check-${ local . name_suffix } "
9+
10+ https_health_check {
11+ port = 443
12+ }
1113}
1214
1315resource "google_network_services_mesh" "default" {
You can’t perform that action at this time.
0 commit comments