Skip to content

Commit 5acad6e

Browse files
Remove expression to avoid the interpolation-only expressions warning since v0.12.14 (#3259) (#1861)
Co-authored-by: Jonathas Amaral Barbosa <[email protected]> Signed-off-by: Modular Magician <[email protected]> Co-authored-by: Jonathas Amaral Barbosa <[email protected]>
1 parent ae50ddc commit 5acad6e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.changelog/3259.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+
```

website/docs/guides/getting_started.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ with a subnetwork in each region. Next, change the network of the
134134
network_interface {
135135
- # A default network is created for all GCP projects
136136
- network = "default"
137-
+ network = "${google_compute_network.vpc_network.self_link}"
137+
+ network = google_compute_network.vpc_network.self_link
138138
access_config {
139139
```
140140

@@ -189,7 +189,7 @@ resource "google_compute_instance" "vm_instance" {
189189
190190
network_interface {
191191
# A default network is created for all GCP projects
192-
network = "${google_compute_network.vpc_network.self_link}"
192+
network = google_compute_network.vpc_network.self_link
193193
access_config {
194194
}
195195
}

0 commit comments

Comments
 (0)