idlc-sdk-pfm 1.0.0.rc10 → 1.0.0.rc11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e8cb95831a49d53d89b4aa701f000ae85afa2a5b
4
- data.tar.gz: b99f5bab411aada28b55b4726810f71b1e12b2ab
3
+ metadata.gz: a2b2bff05772780ebdc7a1fb148e66312ce4ea7d
4
+ data.tar.gz: af59ce141194fd0e68bfaedfb52426b592e55163
5
5
  SHA512:
6
- metadata.gz: dc46fd784db82e300173d93e82a5445f16ad6b6e295682ffcf7aee9bab09fcf29d9ac2e5b284872adbc7ffce33a86955f51ca36d84485db5a07e6b4847184726
7
- data.tar.gz: 9816a30f1b3a9b9f241a762bf70278c27b62074cb9a942ece34daefc4c78281073749a89b4972f3d4b7718fd9089d2bd0e767b3f6dbe909595a778179ad87e00
6
+ metadata.gz: bd28b6d828fcd38fefd36fa9c34859c35a7c130f33ca34953c473476227f17c040a3584ae48d9931d32cb997ae56d9a7f16feccd0f9061ecc9552dfc31102755
7
+ data.tar.gz: 28abbda81511d1729e57484751fdcdd0765d6479d10b1200ce9dafa9749e485f1aad58e0b517fce798ee08bb5539240f6920ecc10e29dc4ecec84ffc5b7b7fce
@@ -1,5 +1,6 @@
1
1
  require 'mixlib/cli'
2
2
  require 'idlc-sdk-pfm/helpers'
3
+ require 'securerandom'
3
4
 
4
5
  module Pfm
5
6
  module Command
@@ -69,6 +70,7 @@ module Pfm
69
70
  def build_setup
70
71
  Packer::Binary.configure do |config|
71
72
  config.version = SETTINGS['PACKER_VERSION']
73
+ config.download_path = "/tmp/#{SecureRandom.uuid}"
72
74
  end
73
75
 
74
76
  @build_config = Idlc::Build::Config.new(SETTINGS['AWS_REGION'])
@@ -113,6 +115,7 @@ module Pfm
113
115
  def deploy_setup
114
116
  Terraform::Binary.configure do |config|
115
117
  config.version = SETTINGS['TERRAFORM_VERSION']
118
+ config.download_path = "/tmp/#{SecureRandom.uuid}"
116
119
  end
117
120
 
118
121
  raise InvalidRepository, 'This doesn\'t look like a valid infrastructure repository' unless File.directory? "#{inf_base_dir}/tf"
@@ -1,3 +1,3 @@
1
1
  module Pfm
2
- VERSION = '1.0.0.rc10'.freeze
2
+ VERSION = '1.0.0.rc11'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: idlc-sdk-pfm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc10
4
+ version: 1.0.0.rc11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Cazell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-18 00:00:00.000000000 Z
11
+ date: 2017-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler