Skip to content

Commit c88b818

Browse files
authored
fix: typo in scaleway_instance_image argument
The field `additional_volume` is used in attributes, but the correspondent argument is named `additional_volume_ids`
1 parent 50aef3f commit c88b818

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/resources/instance_image.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ resource "scaleway_instance_snapshot" "server_snapshot" {
6767
}
6868
6969
resource "scaleway_instance_image" "image" {
70-
name = "image_with_extra_volumes"
71-
root_volume_id = scaleway_instance_snapshot.server_snapshot.id
72-
additional_volumes = [
70+
name = "image_with_extra_volumes"
71+
root_volume_id = scaleway_instance_snapshot.server_snapshot.id
72+
additional_volume_ids = [
7373
scaleway_instance_snapshot.volume_snapshot.id
7474
]
7575
}

0 commit comments

Comments
 (0)