From d3f107e79eb805615b0aa346ce340c2587e3fb90 Mon Sep 17 00:00:00 2001 From: Slava Maslennikov Date: Wed, 26 Dec 2018 13:30:22 -0800 Subject: [PATCH] Specify that attach_disk can be used multiple times (#2549) I'm actually still largely unclear if that's a proper usage of the `attach_disk` block, as current docs mention it's a "list" of disks - though, that didn't see to work for me, at least judging by the plan terraform spit out. --- website/docs/r/compute_instance.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/r/compute_instance.html.markdown b/website/docs/r/compute_instance.html.markdown index 6bc64a8a..cecc59bd 100644 --- a/website/docs/r/compute_instance.html.markdown +++ b/website/docs/r/compute_instance.html.markdown @@ -80,7 +80,7 @@ The following arguments are supported: * `allow_stopping_for_update` - (Optional) If true, allows Terraform to stop the instance to update its properties. If you try to update a property that requires stopping the instance without setting this field, the update will fail. -* `attached_disk` - (Optional) List of disks to attach to the instance. Structure is documented below. +* `attached_disk` - (Optional) Additional disks to attach to the instance. Can be repeated multiple times for multiple disks. Structure is documented below. * `can_ip_forward` - (Optional) Whether to allow sending and receiving of packets with non-matching source or destination IPs.