lono 2.0.0 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/README.md +1 -1
- data/lib/lono/cfn/base.rb +1 -1
- data/lib/lono/cfn/update.rb +2 -2
- data/lib/lono/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab8eab3415009f0d05c8831fa9a821f422f85a02
|
4
|
+
data.tar.gz: e2d052834c5cfddce46d4c35e403cf5ed7f0d04f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57a50daf425fb8fade46d94c62b94065bfdf9f7366065c169f1e1e56359b125b68ae78fdfe40c50b14b935fae7b4d1be8ab4a89f3cbc8b67d74296c961c5fd3a
|
7
|
+
data.tar.gz: 568e8a05a5b82dffc60bfb6a8a12877a63d511dff7d7b33385272d52377d7164c780150d158640b388c48c678f72061139fbff3c4c392a9a54be101d74de24a8
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,9 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
5
5
|
|
6
|
+
## [2.0.1]
|
7
|
+
- fix lono cfn update
|
8
|
+
|
6
9
|
## [2.0.0]
|
7
10
|
- added lono cfn subcommand to launch CloudFormation stacks
|
8
11
|
- added lono params subcommand to generate CloudFormation parameter files
|
data/README.md
CHANGED
@@ -316,7 +316,7 @@ $ lono cfn delete my-stack --sure
|
|
316
316
|
|
317
317
|
### lono cfn preview
|
318
318
|
|
319
|
-
If you want to see the CloudFormation preview without updating the stack you can also use the `lono cfn preview` command. The preview command is also covered in this blog post: [AWS CloudFormation dry-run with lono cfn preview](https://medium.com/boltops/aws-cloudformation-dry-run-with-lono
|
319
|
+
If you want to see the CloudFormation preview without updating the stack you can also use the `lono cfn preview` command. The preview command is also covered in this blog post: [AWS CloudFormation dry-run with lono cfn preview](https://medium.com/boltops/aws-cloudformation-dry-run-with-lono-cfn-plan-2a1e0f80d13c)
|
320
320
|
|
321
321
|
```
|
322
322
|
$ lono cfn preview example --template single_instance --params single_instance
|
data/lib/lono/cfn/base.rb
CHANGED
@@ -8,7 +8,7 @@ class Lono::Cfn::Base
|
|
8
8
|
@stack_name = stack_name
|
9
9
|
@options = options
|
10
10
|
@project_root = options[:project_root] || '.'
|
11
|
-
ProjectChecker.check(@project_root) unless options[:lono] # already ran checker in lono generate
|
11
|
+
Lono::ProjectChecker.check(@project_root) unless options[:lono] # already ran checker in lono generate
|
12
12
|
|
13
13
|
template_name = options[:template] || @stack_name
|
14
14
|
param_name = options[:param] || template_name
|
data/lib/lono/cfn/update.rb
CHANGED
@@ -49,11 +49,11 @@ class Lono::Cfn::Update < Lono::Cfn::Base
|
|
49
49
|
|
50
50
|
def preview
|
51
51
|
options = @options.merge(lono: false, mute_params: true, mute_using: true, keep: true)
|
52
|
-
@preview ||= Preview.new(@stack_name, options)
|
52
|
+
@preview ||= Lono::Cfn::Preview.new(@stack_name, options)
|
53
53
|
end
|
54
54
|
|
55
55
|
def diff
|
56
|
-
@diff ||= Diff.new(@stack_name, @options.merge(lono: false, mute_params: true, mute_using: true))
|
56
|
+
@diff ||= Lono::Cfn::Diff.new(@stack_name, @options.merge(lono: false, mute_params: true, mute_using: true))
|
57
57
|
end
|
58
58
|
|
59
59
|
def change_set_update
|
data/lib/lono/version.rb
CHANGED