humidifier 0.3.0 → 0.4.0
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/lib/humidifier/aws_adapters/noop.rb +6 -0
- data/lib/humidifier/version.rb +1 -1
- data/specs/ApiGateway-Model.cf +1 -1
- data/specs/ApiGateway-RestApi.cf +1 -1
- data/specs/ElastiCache-ParameterGroup.cf +1 -1
- data/specs/Elasticsearch-Domain.cf +1 -1
- data/specs/IAM-Group.cf +7 -6
- data/specs/IAM-Role.cf +8 -7
- data/specs/IAM-User.cf +9 -8
- data/specs/IoT-Certificate.cf +7 -0
- data/specs/IoT-Policy.cf +7 -0
- data/specs/IoT-PolicyPrincipalAttachment.cf +7 -0
- data/specs/IoT-Thing.cf +7 -0
- data/specs/IoT-ThingPrincipalAttachment.cf +7 -0
- data/specs/IoT-TopicRule.cf +7 -0
- metadata +8 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 67ea84abae22ec896dec0995ea8317ecdaf6ce26
|
|
4
|
+
data.tar.gz: 4e834c91dfa6ed5cc689c302d832c86ec29dd196
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba97988edcb27d02e041e42500743c713ced173ca7ae3a4da720570d0c2ae4e4fbf7916c8718a64625d3037aae2d403203f6d4f205482a86253fa92e221c69ad
|
|
7
|
+
data.tar.gz: 2da29025aeee1d04349dc673cc73804f2a76f260b2e34d89eb84c57e7ba79589a1814cd6a7d69d7d8029e396329d54280d7f90bb1bf5dbcf3c72847aa9fa41f4
|
|
@@ -13,6 +13,12 @@ module Humidifier
|
|
|
13
13
|
super
|
|
14
14
|
end
|
|
15
15
|
end
|
|
16
|
+
|
|
17
|
+
# We capture stack methods and warn about them but don't actually respond
|
|
18
|
+
# to them
|
|
19
|
+
def respond_to_missing?(method, *)
|
|
20
|
+
AwsShim::STACK_METHODS.include?(method) ? false : super
|
|
21
|
+
end
|
|
16
22
|
end
|
|
17
23
|
end
|
|
18
24
|
end
|
data/lib/humidifier/version.rb
CHANGED
data/specs/ApiGateway-Model.cf
CHANGED
data/specs/ApiGateway-RestApi.cf
CHANGED
data/specs/IAM-Group.cf
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
"Type": "AWS::IAM::Group",
|
|
3
|
+
"Properties": {
|
|
4
|
+
"GroupName": String,
|
|
5
|
+
"ManagedPolicyArns": [ String, ... ],
|
|
6
|
+
"Path": String,
|
|
7
|
+
"Policies": [ Policies, ... ]
|
|
8
|
+
}
|
|
8
9
|
}
|
data/specs/IAM-Role.cf
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
"Type": "AWS::IAM::Role",
|
|
3
|
+
"Properties": {
|
|
4
|
+
"AssumeRolePolicyDocument": { JSON },
|
|
5
|
+
"ManagedPolicyArns": [ String, ... ],
|
|
6
|
+
"Path": String,
|
|
7
|
+
"Policies": [ Policies, ... ],
|
|
8
|
+
"RoleName": String
|
|
9
|
+
}
|
|
9
10
|
}
|
data/specs/IAM-User.cf
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
2
|
+
"Type": "AWS::IAM::User",
|
|
3
|
+
"Properties": {
|
|
4
|
+
"Groups": [ String, ... ],
|
|
5
|
+
"LoginProfile": LoginProfile Type,
|
|
6
|
+
"ManagedPolicyArns": [ String, ... ],
|
|
7
|
+
"Path": String,
|
|
8
|
+
"Policies": [ Policies, ... ],
|
|
9
|
+
"UserName": String
|
|
10
|
+
}
|
|
10
11
|
}
|
data/specs/IoT-Policy.cf
ADDED
data/specs/IoT-Thing.cf
ADDED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: humidifier
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Localytics
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-08-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -277,6 +277,12 @@ files:
|
|
|
277
277
|
- specs/IAM-Role.cf
|
|
278
278
|
- specs/IAM-User.cf
|
|
279
279
|
- specs/IAM-UserToGroupAddition.cf
|
|
280
|
+
- specs/IoT-Certificate.cf
|
|
281
|
+
- specs/IoT-Policy.cf
|
|
282
|
+
- specs/IoT-PolicyPrincipalAttachment.cf
|
|
283
|
+
- specs/IoT-Thing.cf
|
|
284
|
+
- specs/IoT-ThingPrincipalAttachment.cf
|
|
285
|
+
- specs/IoT-TopicRule.cf
|
|
280
286
|
- specs/KMS-Key.cf
|
|
281
287
|
- specs/Kinesis-Stream.cf
|
|
282
288
|
- specs/KinesisFirehose-DeliveryStream.cf
|