miasma-aws 0.3.26 → 0.3.28
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 +4 -0
- data/lib/miasma-aws/version.rb +1 -1
- data/lib/miasma/contrib/aws/orchestration.rb +5 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cbff818c0f191e8f97f7e15055992af6bc2ec5150ab0d98a9ec57266ac8b461c
|
|
4
|
+
data.tar.gz: 32eeb2065158634f06153f80e36d251656e8b8685899a3a144fa8d7328c2f82c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8be5a33e304893b01596439d4949f6e3f52ae1e8bd098d910df841d22dfda4aaf875406713cc1183dcff36cd0d2ef66d82b703a539f56e1b30ab1e05d6ebbb83
|
|
7
|
+
data.tar.gz: 12576a3785f5f014593b44f23bf0cf8fa54d7adcccc8fcee70299e72fbe4eca8dd5d197bed4ff8003502c848191d2561f1e51bab8b341bd11d50adb3204e5b43
|
data/CHANGELOG.md
CHANGED
data/lib/miasma-aws/version.rb
CHANGED
|
@@ -52,6 +52,10 @@ module Miasma
|
|
|
52
52
|
:api => :orchestration,
|
|
53
53
|
:collection => :stacks,
|
|
54
54
|
),
|
|
55
|
+
"AWS::S3::Bucket" => Smash.new(
|
|
56
|
+
:api => :storage,
|
|
57
|
+
:collection => :buckets,
|
|
58
|
+
),
|
|
55
59
|
).to_smash(:freeze)
|
|
56
60
|
|
|
57
61
|
# Fetch stacks or update provided stack data
|
|
@@ -659,7 +663,7 @@ module Miasma
|
|
|
659
663
|
:resource_state => event["ResourceStatus"].downcase.to_sym,
|
|
660
664
|
:resource_status => event["ResourceStatus"],
|
|
661
665
|
:resource_status_reason => event["ResourceStatusReason"],
|
|
662
|
-
:time => Time.parse(event["Timestamp"]),
|
|
666
|
+
:time => Time.parse(event["Timestamp"]).localtime,
|
|
663
667
|
).valid_state
|
|
664
668
|
end
|
|
665
669
|
if evt_id
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: miasma-aws
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.28
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Roberts
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-08-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: miasma
|
|
@@ -196,8 +196,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
196
196
|
- !ruby/object:Gem::Version
|
|
197
197
|
version: '0'
|
|
198
198
|
requirements: []
|
|
199
|
-
|
|
200
|
-
rubygems_version: 2.7.6
|
|
199
|
+
rubygems_version: 3.0.3
|
|
201
200
|
signing_key:
|
|
202
201
|
specification_version: 4
|
|
203
202
|
summary: Smoggy AWS API
|