diff options
author | Duncan Mac-Vicar P <dmacvicar@suse.de> | 2016-05-22 01:42:23 +0200 |
---|---|---|
committer | Duncan Mac-Vicar P <dmacvicar@suse.de> | 2016-05-22 01:42:23 +0200 |
commit | 9db44b5c0a6c21a7686ee7d41f01bf392bfe6a5d (patch) | |
tree | 011a56597ec08d6455f4a3aee444736d5dfdd865 | |
parent | f4640b52cf6375d9c1cdc75970762183f4360bec (diff) | |
download | terraform-provider-libvirt-9db44b5c0a6c21a7686ee7d41f01bf392bfe6a5d.tar terraform-provider-libvirt-9db44b5c0a6c21a7686ee7d41f01bf392bfe6a5d.tar.gz |
update example to reflect 8496660254ab1bb662d5f257cdf8040d6b229eb3
Closes #12
-rw-r--r-- | examples/count/libvirt.tf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/count/libvirt.tf b/examples/count/libvirt.tf index bab7b3fe..de6ca59b 100644 --- a/examples/count/libvirt.tf +++ b/examples/count/libvirt.tf @@ -9,7 +9,7 @@ resource "libvirt_volume" "opensuse_leap" { resource "libvirt_volume" "volume" { name = "volume-${count.index}" - base_volume = "${libvirt_volume.opensuse_leap.id}" + base_volume_id = "${libvirt_volume.opensuse_leap.id}" count = 4 } |