vagrant-terraform 0.2 → 0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5a9c22db2eadeae8e282b0e26d8a0eb0a5640de368bf52b6afe3469c6b241a2
4
- data.tar.gz: 40a6b372d370496245c3d2e2eeed666adf537aa54c4b00ba12d23531c527b1e3
3
+ metadata.gz: 521be5e29b0d8f4f9721993c9eb9bdc4f1c24c13f49dbb7e908ff073eb64582b
4
+ data.tar.gz: fa899ca576f224bd3848d4dc4f30d1fdf25dbdbd197456d8af01a669b8037570
5
5
  SHA512:
6
- metadata.gz: eb883602717375425b9fc4e51da63a3a81da0e1ee5c667ce22b422c906992dd23a2bcd7d42dd6416573b72e99d4a09b3d2eb5eac6fad71d9d0da46d8b016c80b
7
- data.tar.gz: 2693108a2b60bbe5df0fb85f3620c053b1ce64b90d67544b2e38280fc301aa03e626aef98bcfba95fb78acbfbe816a3adec0bf9d8d0410f044f65b87a49a8ed1
6
+ metadata.gz: 942d98722ba684c0ef7e3e6b9142f131f5062eaee220735d085b9aedf677c90234c0d92914eab3e40a60f1f29500d655549df11d28f6413b2504a42d920d5132
7
+ data.tar.gz: 9318d6692fd8b1532cf3418db29dfea4932c27caa7b45bd0b931021cb6e4585868e1d162ca8fee6a28f4e18d168ea7f56cbc1cde1bb52850ae135341fe1099c8
@@ -48,7 +48,7 @@ resource "proxmox_vm_qemu" "#{vmname.gsub(/\./, '-')}" {
48
48
  desc = "#{config.description}"
49
49
  vm_state = "stopped"
50
50
  clone = "#{config.template}"
51
- full_clone = "#{config.full_clone}"
51
+ full_clone = #{config.full_clone}
52
52
  cores = #{config.cpu_cores.to_i}
53
53
  cpu_type = "#{config.cpu_type}"
54
54
  memory = #{Filesize.from("#{config.memory_size} B").to_f('MB').to_i}
@@ -70,6 +70,7 @@ resource "proxmox_vm_qemu" "#{vmname.gsub(/\./, '-')}" {
70
70
  disk {
71
71
  storage = "#{config.storage_domain}"
72
72
  size = "#{Filesize.from("#{config.disk_size} B").to_f('GB').to_i}G"
73
+ format = "#{config.full_clone ? "raw" : "qcow2"}"
73
74
  }
74
75
  }
75
76
  }
@@ -101,7 +102,7 @@ terraform {
101
102
  required_providers {
102
103
  proxmox = {
103
104
  source = "telmate/proxmox"
104
- version = "3.0.2-rc01"
105
+ version = "3.0.2-rc04"
105
106
  }
106
107
  }
107
108
  }
@@ -1,6 +1,6 @@
1
1
  module VagrantPlugins
2
2
  module TerraformProvider
3
- VERSION = '0.2'
3
+ VERSION = '0.3'
4
4
  end
5
5
  end
6
6
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-terraform
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.2'
4
+ version: '0.3'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mika Båtsman
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-06-30 00:00:00.000000000 Z
11
+ date: 2025-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: filesize