Skip to content

Commit

Permalink
update test with 'list' to 'tolist' (#4587) (#3055)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Mar 15, 2021
1 parent 34c12df commit abaabc7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/4587.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:none

```
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ resource "google_compute_target_https_proxy" "default" {
}
locals {
managed_domains = list("test.example.com")
managed_domains = tolist(["test.example.com"])
}
resource "random_id" "certificate" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ resource "google_compute_target_https_proxy" "default" {
}
locals {
managed_domains = list("test.example.com")
managed_domains = tolist(["test.example.com"])
}
resource "random_id" "certificate" {
Expand Down

0 comments on commit abaabc7

Please sign in to comment.