covalence 0.9.5 → 0.9.6
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 +1 -1
- data/lib/covalence/environment_tasks.rb +2 -2
- data/lib/covalence/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 369cc5b1cdd92f77b74cb61303365529640a66aeb891ca9526fd52cc10f3475f
|
|
4
|
+
data.tar.gz: db87f370826c127ed303a3e9a28a93473e14136060add7faca35257800c66e5b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 335916bf77b12ccdbca83defbbef19986da8cbb9a182a21d68ec046a55c4d2d0967169b97c5812e5736f3de1f036afcf0dddddb7f9f15285c75db50527e52a87
|
|
7
|
+
data.tar.gz: '002977430e5c9d5eb580632dfcafa210d2fcf4c9408fd77ed9ff3d4afdd3cca20213f810f46e075140dca16c13bc995625d168edac7e213ab71098c39bd516c5'
|
data/CHANGELOG.md
CHANGED
|
@@ -127,7 +127,7 @@ module Covalence
|
|
|
127
127
|
packer_tasks.context_validate(target_args, custom_opts.args)
|
|
128
128
|
end
|
|
129
129
|
|
|
130
|
-
desc "Export the #{stack_name} stack of the #{environment_name} environment to
|
|
130
|
+
desc "Export the #{stack_name} stack of the #{environment_name} environment to #{Covalence::STACK_EXPORT}/packer"
|
|
131
131
|
task generate_rake_taskname(environment_name, stack_name, "packer_stack_export") do
|
|
132
132
|
packer_tasks.packer_stack_export()
|
|
133
133
|
end
|
|
@@ -171,7 +171,7 @@ module Covalence
|
|
|
171
171
|
tf_tasks.stack_shell
|
|
172
172
|
end
|
|
173
173
|
|
|
174
|
-
desc "Export the #{stack_name} stack of the #{environment_name} environment to
|
|
174
|
+
desc "Export the #{stack_name} stack of the #{environment_name} environment to #{Covalence::STACK_EXPORT}/terraform"
|
|
175
175
|
task generate_rake_taskname(environment_name, stack_name, "stack_export") do
|
|
176
176
|
tf_tasks.stack_export
|
|
177
177
|
end
|
data/lib/covalence/version.rb
CHANGED