summaryrefslogtreecommitdiff
path: root/docs/providers/libvirt/r
diff options
context:
space:
mode:
authorDuncan Mac-Vicar P <dmacvicar@suse.de>2016-02-28 11:56:22 +0100
committerDuncan Mac-Vicar P <dmacvicar@suse.de>2016-02-28 11:56:22 +0100
commit9f1ed1a812d9471f8ae2c2cb1f4ae1a1afa39255 (patch)
treee26617f81d84740b75dd2c81bbaec81c820a53a6 /docs/providers/libvirt/r
parentaede5ac6881c4ef8bffd9612faacc2af22dfa01a (diff)
downloadterraform-provider-libvirt-9f1ed1a812d9471f8ae2c2cb1f4ae1a1afa39255.tar
terraform-provider-libvirt-9f1ed1a812d9471f8ae2c2cb1f4ae1a1afa39255.tar.gz
implement memory and number of cpus
Diffstat (limited to 'docs/providers/libvirt/r')
-rw-r--r--docs/providers/libvirt/r/domain.html.markdown7
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/providers/libvirt/r/domain.html.markdown b/docs/providers/libvirt/r/domain.html.markdown
index 8abdf520..e9f2ab55 100644
--- a/docs/providers/libvirt/r/domain.html.markdown
+++ b/docs/providers/libvirt/r/domain.html.markdown
@@ -24,4 +24,9 @@ resource "libvirt_domain" "default" {
The following arguments are supported:
* `name` - (Required) A unique name for the resource, required by libvirt.
- Changing this forces a new resource to be created.
+ Changing this forces a new resource to be created.
+* `memory` - (Optional) The amount of memory in MiB. If not specified the domain will be
+ created with 512 MiB of memory
+ be used.
+* `vcpu` - (Optional) The amount of virtual CPUs. If not specified, a single CPU will be created.
+