Merge pull request #59 from in0rdr/fix/typeset

Cloudinit Example: Fix Typeset Assignment
This commit is contained in:
Grant Gongaware 2019-06-05 13:29:25 -07:00 committed by GitHub
commit c5283ea854
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ resource "proxmox_vm_qemu" "cloudinit-test" {
memory = "2048" memory = "2048"
# Setup the disk. The id has to be unique # Setup the disk. The id has to be unique
disk = { disk {
id = 0 id = 0
size = 32 size = 32
type = "virtio" type = "virtio"
@ -35,7 +35,7 @@ resource "proxmox_vm_qemu" "cloudinit-test" {
} }
# Setup the network interface and assign a vlan tag: 256 # Setup the network interface and assign a vlan tag: 256
network = { network {
id = 0 id = 0
model = "virtio" model = "virtio"
bridge = "vmbr0" bridge = "vmbr0"