Skip to content

Commit abaabc7

Browse files
update test with 'list' to 'tolist' (#4587) (#3055)
Signed-off-by: Modular Magician <[email protected]>
1 parent 34c12df commit abaabc7

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.changelog/4587.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_managed_ssl_certificate_generated_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ resource "google_compute_target_https_proxy" "default" {
165165
}
166166
167167
locals {
168-
managed_domains = list("test.example.com")
168+
managed_domains = tolist(["test.example.com"])
169169
}
170170
171171
resource "random_id" "certificate" {

website/docs/r/compute_managed_ssl_certificate.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ resource "google_compute_target_https_proxy" "default" {
148148
}
149149
150150
locals {
151-
managed_domains = list("test.example.com")
151+
managed_domains = tolist(["test.example.com"])
152152
}
153153
154154
resource "random_id" "certificate" {

0 commit comments

Comments
 (0)