Skip to content

Commit 498c043

Browse files
Fix tests requiring strip_query (#3465) (#2032)
* Fix tests requiring strip_query * Missed one Signed-off-by: Modular Magician <[email protected]>
1 parent 0d7926a commit 498c043

7 files changed

+9
-0
lines changed

.changelog/3465.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:none
2+
3+
```

google-beta/resource_compute_region_target_http_proxy_generated_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ resource "google_compute_region_url_map" "default" {
132132
name = "tf-test-url-map%{random_suffix}"
133133
default_url_redirect {
134134
https_redirect = true
135+
strip_query = false
135136
}
136137
}
137138
`, context)

google-beta/resource_compute_region_url_map_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -848,6 +848,7 @@ resource "google_compute_region_url_map" "foobar" {
848848
name = "urlmap-test-%s"
849849
default_url_redirect {
850850
https_redirect = true
851+
strip_query = false
851852
}
852853
}
853854
`, randomSuffix)

google-beta/resource_compute_target_http_proxy_generated_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ resource "google_compute_url_map" "default" {
127127
name = "tf-test-url-map%{random_suffix}"
128128
default_url_redirect {
129129
https_redirect = true
130+
strip_query = false
130131
}
131132
}
132133
`, context)

google-beta/resource_compute_url_map_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -969,6 +969,7 @@ resource "google_compute_url_map" "foobar" {
969969
name = "urlmap-test-%s"
970970
default_url_redirect {
971971
https_redirect = true
972+
strip_query = false
972973
}
973974
}
974975
`, randomSuffix)

website/docs/r/compute_region_target_http_proxy.html.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ resource "google_compute_region_url_map" "default" {
106106
name = "url-map"
107107
default_url_redirect {
108108
https_redirect = true
109+
strip_query = false
109110
}
110111
}
111112
```

website/docs/r/compute_target_http_proxy.html.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ resource "google_compute_url_map" "default" {
101101
name = "url-map"
102102
default_url_redirect {
103103
https_redirect = true
104+
strip_query = false
104105
}
105106
}
106107
```

0 commit comments

Comments
 (0)