fix cloudstack_disk documentation

This commit is contained in:
Axel FAUVEL 2017-03-30 10:34:55 +02:00
parent b12e7782c9
commit 204789f07c
1 changed files with 6 additions and 6 deletions

View File

@ -15,12 +15,12 @@ a virtual machine if the optional parameters are configured.
```
resource "cloudstack_disk" "default" {
name = "test-disk"
attach = "true"
disk_offering = "custom"
size = 50
virtual_machine = "server-1"
zone = "zone-1"
name = "test-disk"
attach = "true"
disk_offering = "custom"
size = 50
virtual_machine_id = "server-1"
zone = "zone-1"
}
```