Merge pull request #13196 from axelfauvel/fix-cloudstack_disk-example-usage
[docs] fix cloudstack_disk documentation
This commit is contained in:
commit
de2decbb44
|
@ -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"
|
||||
}
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue