covalence 0.9.6 → 0.9.7
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 +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/covalence/core/entities/input.rb +4 -0
- data/lib/covalence/core/entities/stack.rb +2 -2
- data/lib/covalence/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4a31ac71d586d110e04a65e7647f70bec41524d8f3ef62aab08c3d5ec51bcac
|
4
|
+
data.tar.gz: f430ac9a93d994b8271558b7873d4c55de709951b92115aa53bf1f515aea1f77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c253bad63ddadc0074df8e2c29bb8ec5ecb33e490122590a034f16d800658346ed00ca808f60f1bd75df56c361a8279113e3578b1069b1d4edae629e9c7868a
|
7
|
+
data.tar.gz: cbd437cc4dff8a263780367cf7982bf0452fd6c96a496fd9a1cffe339758e93787d531fff8702badb48caa8b7f067bb886ecf1afa359c5d45130d54b060d319f
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
## 0.9.7 (Sep 14, 2019)
|
2
|
+
|
3
|
+
IMPROVEMENTS:
|
4
|
+
- Issue [#88](https://github.com/unifio/covalence/issues/88) Add input processing to packer stacks. Allows for shell interpolation processing on inputs for packer stacks.
|
5
|
+
- Can use the shell interpolation in the template to generate AWS assume role temporary keys to populate template. This allows for role assumption since role assumption is not supported from `~/.aws/config` attributes.
|
6
|
+
|
1
7
|
## 0.9.6 (Sep 9, 2019)
|
2
8
|
|
3
9
|
IMPROVEMENTS:
|
@@ -51,8 +51,8 @@ module Covalence
|
|
51
51
|
File.open("#{path}/covalence-inputs.tfvars",'w') {|f| f.write(config)}
|
52
52
|
elsif type == "packer"
|
53
53
|
config = Hash.new
|
54
|
-
inputs.each do |name, input|
|
55
|
-
config[name] = input
|
54
|
+
inputs.values.map(&:to_command_hash_elements).each do |name, input|
|
55
|
+
config["#{name}"] = input
|
56
56
|
end
|
57
57
|
config_json = JSON.generate(config)
|
58
58
|
logger.info "path: #{path} module_path: #{module_path}\nStack inputs:\n\n#{config_json}"
|
data/lib/covalence/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: covalence
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Unif.io
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-09-
|
11
|
+
date: 2019-09-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: deep_merge
|