Skip to content

Commit bbeda0a

Browse files
authored
Merge pull request #226 from positiveEV/patch-1
docs/instance: Fix wrong arg in wait_for example
2 parents 28f6730 + 8d85ae1 commit bbeda0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/resources/instance.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,12 +192,12 @@ resource "incus_instance" "instance1" {
192192
193193
wait_for {
194194
type = "ipv4"
195-
type = "eth0"
195+
nic = "eth0"
196196
}
197197
198198
wait_for {
199199
type = "ipv6"
200-
type = "eth0"
200+
nic = "eth0"
201201
}
202202
}
203203
```

0 commit comments

Comments
 (0)