Merge pull request #13196 from axelfauvel/fix-cloudstack_disk-example-usage

[docs] fix cloudstack_disk documentation
This commit is contained in:
Tom Harvey 2017-03-30 11:13:30 +02:00 committed by GitHub
commit de2decbb44
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"
}
```