humidifier 0.1.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 +7 -0
- data/LICENSE +21 -0
- data/README.md +88 -0
- data/ext/humidifier/extconf.rb +2 -0
- data/ext/humidifier/humidifier.c +93 -0
- data/ext/humidifier/humidifier.h +14 -0
- data/lib/humidifier/aws_adapters/base.rb +64 -0
- data/lib/humidifier/aws_adapters/noop.rb +18 -0
- data/lib/humidifier/aws_adapters/sdkv1.rb +56 -0
- data/lib/humidifier/aws_adapters/sdkv2.rb +43 -0
- data/lib/humidifier/aws_shim.rb +60 -0
- data/lib/humidifier/condition.rb +17 -0
- data/lib/humidifier/fn.rb +28 -0
- data/lib/humidifier/humidifier.bundle +0 -0
- data/lib/humidifier/loader.rb +53 -0
- data/lib/humidifier/mapping.rb +17 -0
- data/lib/humidifier/output.rb +20 -0
- data/lib/humidifier/parameter.rb +27 -0
- data/lib/humidifier/props.rb +127 -0
- data/lib/humidifier/ref.rb +17 -0
- data/lib/humidifier/resource.rb +108 -0
- data/lib/humidifier/sdk_payload.rb +30 -0
- data/lib/humidifier/serializer.rb +18 -0
- data/lib/humidifier/sleeper.rb +25 -0
- data/lib/humidifier/stack.rb +66 -0
- data/lib/humidifier/utils.rb +21 -0
- data/lib/humidifier/version.rb +4 -0
- data/lib/humidifier.rb +50 -0
- data/specs/ApiGateway-Account.cf +6 -0
- data/specs/ApiGateway-ApiKey.cf +9 -0
- data/specs/ApiGateway-Authorizer.cf +13 -0
- data/specs/ApiGateway-BasePathMapping.cf +9 -0
- data/specs/ApiGateway-ClientCertificate.cf +6 -0
- data/specs/ApiGateway-Deployment.cf +9 -0
- data/specs/ApiGateway-Method.cf +15 -0
- data/specs/ApiGateway-Model.cf +10 -0
- data/specs/ApiGateway-Resource.cf +8 -0
- data/specs/ApiGateway-RestApi.cf +12 -0
- data/specs/ApiGateway-Stage.cf +14 -0
- data/specs/AutoScaling-AutoScalingGroup.cf +21 -0
- data/specs/AutoScaling-LaunchConfiguration.cf +22 -0
- data/specs/AutoScaling-LifecycleHook.cf +12 -0
- data/specs/AutoScaling-ScalingPolicy.cf +14 -0
- data/specs/AutoScaling-ScheduledAction.cf +12 -0
- data/specs/CloudFormation-Authentication.cf +18 -0
- data/specs/CloudFormation-CustomResource.cf +8 -0
- data/specs/CloudFormation-Interface.cf +9 -0
- data/specs/CloudFormation-Stack.cf +10 -0
- data/specs/CloudFormation-WaitCondition.cf +8 -0
- data/specs/CloudFormation-WaitConditionHandle.cf +5 -0
- data/specs/CloudFront-Distribution.cf +6 -0
- data/specs/CloudTrail-Trail.cf +16 -0
- data/specs/CloudWatch-Alarm.cf +20 -0
- data/specs/CodeDeploy-Application.cf +6 -0
- data/specs/CodeDeploy-DeploymentConfig.cf +7 -0
- data/specs/CodeDeploy-DeploymentGroup.cf +13 -0
- data/specs/CodePipeline-CustomActionType.cf +12 -0
- data/specs/CodePipeline-Pipeline.cf +11 -0
- data/specs/Config-ConfigRule.cf +11 -0
- data/specs/Config-ConfigurationRecorder.cf +8 -0
- data/specs/Config-DeliveryChannel.cf +10 -0
- data/specs/DataPipeline-Pipeline.cf +12 -0
- data/specs/DirectoryService-MicrosoftAD.cf +11 -0
- data/specs/DirectoryService-SimpleAD.cf +13 -0
- data/specs/DynamoDB-Table.cf +12 -0
- data/specs/EC2-CustomerGateway.cf +9 -0
- data/specs/EC2-DHCPOptions.cf +11 -0
- data/specs/EC2-EIP.cf +7 -0
- data/specs/EC2-EIPAssociation.cf +10 -0
- data/specs/EC2-FlowLog.cf +10 -0
- data/specs/EC2-Host.cf +8 -0
- data/specs/EC2-Instance.cf +32 -0
- data/specs/EC2-InternetGateway.cf +6 -0
- data/specs/EC2-NatGateway.cf +7 -0
- data/specs/EC2-NetworkAcl.cf +7 -0
- data/specs/EC2-NetworkAclEntry.cf +13 -0
- data/specs/EC2-NetworkInterface.cf +13 -0
- data/specs/EC2-NetworkInterfaceAttachment.cf +9 -0
- data/specs/EC2-PlacementGroup.cf +6 -0
- data/specs/EC2-Route.cf +12 -0
- data/specs/EC2-RouteTable.cf +7 -0
- data/specs/EC2-SecurityGroup.cf +10 -0
- data/specs/EC2-SecurityGroupEgress.cf +11 -0
- data/specs/EC2-SecurityGroupIngress.cf +14 -0
- data/specs/EC2-SpotFleet.cf +6 -0
- data/specs/EC2-Subnet.cf +10 -0
- data/specs/EC2-SubnetNetworkAclAssociation.cf +5 -0
- data/specs/EC2-SubnetRouteTableAssociation.cf +7 -0
- data/specs/EC2-VPC.cf +10 -0
- data/specs/EC2-VPCDHCPOptionsAssociation.cf +7 -0
- data/specs/EC2-VPCEndpoint.cf +9 -0
- data/specs/EC2-VPCGatewayAttachment.cf +8 -0
- data/specs/EC2-VPCPeeringConnection.cf +8 -0
- data/specs/EC2-VPNConnection.cf +10 -0
- data/specs/EC2-VPNConnectionRoute.cf +7 -0
- data/specs/EC2-VPNGateway.cf +7 -0
- data/specs/EC2-VPNGatewayRoutePropagation.cf +7 -0
- data/specs/EC2-Volume.cf +14 -0
- data/specs/EC2-VolumeAttachment.cf +8 -0
- data/specs/ECR-Repository.cf +7 -0
- data/specs/ECS-Cluster.cf +6 -0
- data/specs/ECS-Service.cf +11 -0
- data/specs/ECS-TaskDefinition.cf +7 -0
- data/specs/EFS-FileSystem.cf +6 -0
- data/specs/EFS-MountTarget.cf +9 -0
- data/specs/EMR-Cluster.cf +17 -0
- data/specs/EMR-InstanceGroupConfig.cf +14 -0
- data/specs/EMR-Step.cf +9 -0
- data/specs/ElastiCache-CacheCluster.cf +27 -0
- data/specs/ElastiCache-ParameterGroup.cf +8 -0
- data/specs/ElastiCache-ReplicationGroup.cf +23 -0
- data/specs/ElastiCache-SecurityGroup.cf +7 -0
- data/specs/ElastiCache-SecurityGroupIngress.cf +9 -0
- data/specs/ElastiCache-SubnetGroup.cf +7 -0
- data/specs/ElasticBeanstalk-Application.cf +7 -0
- data/specs/ElasticBeanstalk-ApplicationVersion.cf +8 -0
- data/specs/ElasticBeanstalk-ConfigurationTemplate.cf +11 -0
- data/specs/ElasticBeanstalk-Environment.cf +15 -0
- data/specs/ElasticLoadBalancing-LoadBalancer.cf +21 -0
- data/specs/Elasticsearch-Domain.cf +12 -0
- data/specs/Events-Rule.cf +12 -0
- data/specs/GameLift-Alias.cf +8 -0
- data/specs/GameLift-Build.cf +8 -0
- data/specs/GameLift-Fleet.cf +16 -0
- data/specs/IAM-AccessKey.cf +8 -0
- data/specs/IAM-Group.cf +8 -0
- data/specs/IAM-InstanceProfile.cf +7 -0
- data/specs/IAM-ManagedPolicy.cf +11 -0
- data/specs/IAM-Policy.cf +10 -0
- data/specs/IAM-Role.cf +9 -0
- data/specs/IAM-User.cf +10 -0
- data/specs/IAM-UserToGroupAddition.cf +7 -0
- data/specs/KMS-Key.cf +9 -0
- data/specs/Kinesis-Stream.cf +8 -0
- data/specs/KinesisFirehose-DeliveryStream.cf +9 -0
- data/specs/Lambda-Alias.cf +9 -0
- data/specs/Lambda-EventSourceMapping.cf +10 -0
- data/specs/Lambda-Function.cf +14 -0
- data/specs/Lambda-Permission.cf +10 -0
- data/specs/Lambda-Version.cf +8 -0
- data/specs/Logs-Destination.cf +9 -0
- data/specs/Logs-LogGroup.cf +6 -0
- data/specs/Logs-LogStream.cf +7 -0
- data/specs/Logs-MetricFilter.cf +8 -0
- data/specs/Logs-SubscriptionFilter.cf +9 -0
- data/specs/OpsWorks-App.cf +16 -0
- data/specs/OpsWorks-ElasticLoadBalancerAttachment.cf +7 -0
- data/specs/OpsWorks-Instance.cf +19 -0
- data/specs/OpsWorks-Layer.cf +21 -0
- data/specs/OpsWorks-Stack.cf +23 -0
- data/specs/RDS-DBCluster.cf +23 -0
- data/specs/RDS-DBClusterParameterGroup.cf +9 -0
- data/specs/RDS-DBInstance.cf +38 -0
- data/specs/RDS-DBParameterGroup.cf +9 -0
- data/specs/RDS-DBSecurityGroup.cf +10 -0
- data/specs/RDS-DBSecurityGroupIngress.cf +10 -0
- data/specs/RDS-DBSubnetGroup.cf +8 -0
- data/specs/RDS-EventSubscription.cf +10 -0
- data/specs/RDS-OptionGroup.cf +10 -0
- data/specs/Redshift-Cluster.cf +30 -0
- data/specs/Redshift-ClusterParameterGroup.cf +8 -0
- data/specs/Redshift-ClusterSecurityGroup.cf +6 -0
- data/specs/Redshift-ClusterSecurityGroupIngress.cf +9 -0
- data/specs/Redshift-ClusterSubnetGroup.cf +7 -0
- data/specs/Route53-HealthCheck.cf +7 -0
- data/specs/Route53-HostedZone.cf +9 -0
- data/specs/Route53-RecordSet.cf +19 -0
- data/specs/Route53-RecordSetGroup.cf +9 -0
- data/specs/S3-Bucket.cf +15 -0
- data/specs/S3-BucketPolicy.cf +7 -0
- data/specs/SDB-Domain.cf +6 -0
- data/specs/SNS-Topic.cf +8 -0
- data/specs/SNS-TopicPolicy.cf +8 -0
- data/specs/SQS-Queue.cf +12 -0
- data/specs/SQS-QueuePolicy.cf +7 -0
- data/specs/SSM-Document.cf +6 -0
- data/specs/WAF-ByteMatchSet.cf +7 -0
- data/specs/WAF-IPSet.cf +7 -0
- data/specs/WAF-Rule.cf +8 -0
- data/specs/WAF-SizeConstraintSet.cf +7 -0
- data/specs/WAF-SqlInjectionMatchSet.cf +7 -0
- data/specs/WAF-WebACL.cf +9 -0
- data/specs/WAF-XssMatchSet.cf +7 -0
- data/specs/WorkSpaces-Workspace.cf +11 -0
- metadata +356 -0
metadata
ADDED
|
@@ -0,0 +1,356 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: humidifier
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Localytics
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2016-06-20 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.11'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.11'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '10.0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '10.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: minitest
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '5.0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '5.0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: nokogiri
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '1.6'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '1.6'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: simplecov
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - "~>"
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0.11'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "~>"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0.11'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: coveralls
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0.8'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0.8'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: rubocop
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - "~>"
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0.39'
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - "~>"
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '0.39'
|
|
111
|
+
- !ruby/object:Gem::Dependency
|
|
112
|
+
name: rake-compiler
|
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
|
114
|
+
requirements:
|
|
115
|
+
- - "~>"
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: '0.9'
|
|
118
|
+
type: :development
|
|
119
|
+
prerelease: false
|
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
requirements:
|
|
122
|
+
- - "~>"
|
|
123
|
+
- !ruby/object:Gem::Version
|
|
124
|
+
version: '0.9'
|
|
125
|
+
- !ruby/object:Gem::Dependency
|
|
126
|
+
name: benchmark-ips
|
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
|
128
|
+
requirements:
|
|
129
|
+
- - "~>"
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: '2.6'
|
|
132
|
+
type: :development
|
|
133
|
+
prerelease: false
|
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
+
requirements:
|
|
136
|
+
- - "~>"
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: '2.6'
|
|
139
|
+
description: Programmatically generate and manage AWS CloudFormation templates, stacks,
|
|
140
|
+
and change sets.
|
|
141
|
+
email:
|
|
142
|
+
- oss@localytics.com
|
|
143
|
+
executables: []
|
|
144
|
+
extensions:
|
|
145
|
+
- ext/humidifier/extconf.rb
|
|
146
|
+
extra_rdoc_files: []
|
|
147
|
+
files:
|
|
148
|
+
- LICENSE
|
|
149
|
+
- README.md
|
|
150
|
+
- ext/humidifier/extconf.rb
|
|
151
|
+
- ext/humidifier/humidifier.c
|
|
152
|
+
- ext/humidifier/humidifier.h
|
|
153
|
+
- lib/humidifier.rb
|
|
154
|
+
- lib/humidifier/aws_adapters/base.rb
|
|
155
|
+
- lib/humidifier/aws_adapters/noop.rb
|
|
156
|
+
- lib/humidifier/aws_adapters/sdkv1.rb
|
|
157
|
+
- lib/humidifier/aws_adapters/sdkv2.rb
|
|
158
|
+
- lib/humidifier/aws_shim.rb
|
|
159
|
+
- lib/humidifier/condition.rb
|
|
160
|
+
- lib/humidifier/fn.rb
|
|
161
|
+
- lib/humidifier/humidifier.bundle
|
|
162
|
+
- lib/humidifier/loader.rb
|
|
163
|
+
- lib/humidifier/mapping.rb
|
|
164
|
+
- lib/humidifier/output.rb
|
|
165
|
+
- lib/humidifier/parameter.rb
|
|
166
|
+
- lib/humidifier/props.rb
|
|
167
|
+
- lib/humidifier/ref.rb
|
|
168
|
+
- lib/humidifier/resource.rb
|
|
169
|
+
- lib/humidifier/sdk_payload.rb
|
|
170
|
+
- lib/humidifier/serializer.rb
|
|
171
|
+
- lib/humidifier/sleeper.rb
|
|
172
|
+
- lib/humidifier/stack.rb
|
|
173
|
+
- lib/humidifier/utils.rb
|
|
174
|
+
- lib/humidifier/version.rb
|
|
175
|
+
- specs/ApiGateway-Account.cf
|
|
176
|
+
- specs/ApiGateway-ApiKey.cf
|
|
177
|
+
- specs/ApiGateway-Authorizer.cf
|
|
178
|
+
- specs/ApiGateway-BasePathMapping.cf
|
|
179
|
+
- specs/ApiGateway-ClientCertificate.cf
|
|
180
|
+
- specs/ApiGateway-Deployment.cf
|
|
181
|
+
- specs/ApiGateway-Method.cf
|
|
182
|
+
- specs/ApiGateway-Model.cf
|
|
183
|
+
- specs/ApiGateway-Resource.cf
|
|
184
|
+
- specs/ApiGateway-RestApi.cf
|
|
185
|
+
- specs/ApiGateway-Stage.cf
|
|
186
|
+
- specs/AutoScaling-AutoScalingGroup.cf
|
|
187
|
+
- specs/AutoScaling-LaunchConfiguration.cf
|
|
188
|
+
- specs/AutoScaling-LifecycleHook.cf
|
|
189
|
+
- specs/AutoScaling-ScalingPolicy.cf
|
|
190
|
+
- specs/AutoScaling-ScheduledAction.cf
|
|
191
|
+
- specs/CloudFormation-Authentication.cf
|
|
192
|
+
- specs/CloudFormation-CustomResource.cf
|
|
193
|
+
- specs/CloudFormation-Interface.cf
|
|
194
|
+
- specs/CloudFormation-Stack.cf
|
|
195
|
+
- specs/CloudFormation-WaitCondition.cf
|
|
196
|
+
- specs/CloudFormation-WaitConditionHandle.cf
|
|
197
|
+
- specs/CloudFront-Distribution.cf
|
|
198
|
+
- specs/CloudTrail-Trail.cf
|
|
199
|
+
- specs/CloudWatch-Alarm.cf
|
|
200
|
+
- specs/CodeDeploy-Application.cf
|
|
201
|
+
- specs/CodeDeploy-DeploymentConfig.cf
|
|
202
|
+
- specs/CodeDeploy-DeploymentGroup.cf
|
|
203
|
+
- specs/CodePipeline-CustomActionType.cf
|
|
204
|
+
- specs/CodePipeline-Pipeline.cf
|
|
205
|
+
- specs/Config-ConfigRule.cf
|
|
206
|
+
- specs/Config-ConfigurationRecorder.cf
|
|
207
|
+
- specs/Config-DeliveryChannel.cf
|
|
208
|
+
- specs/DataPipeline-Pipeline.cf
|
|
209
|
+
- specs/DirectoryService-MicrosoftAD.cf
|
|
210
|
+
- specs/DirectoryService-SimpleAD.cf
|
|
211
|
+
- specs/DynamoDB-Table.cf
|
|
212
|
+
- specs/EC2-CustomerGateway.cf
|
|
213
|
+
- specs/EC2-DHCPOptions.cf
|
|
214
|
+
- specs/EC2-EIP.cf
|
|
215
|
+
- specs/EC2-EIPAssociation.cf
|
|
216
|
+
- specs/EC2-FlowLog.cf
|
|
217
|
+
- specs/EC2-Host.cf
|
|
218
|
+
- specs/EC2-Instance.cf
|
|
219
|
+
- specs/EC2-InternetGateway.cf
|
|
220
|
+
- specs/EC2-NatGateway.cf
|
|
221
|
+
- specs/EC2-NetworkAcl.cf
|
|
222
|
+
- specs/EC2-NetworkAclEntry.cf
|
|
223
|
+
- specs/EC2-NetworkInterface.cf
|
|
224
|
+
- specs/EC2-NetworkInterfaceAttachment.cf
|
|
225
|
+
- specs/EC2-PlacementGroup.cf
|
|
226
|
+
- specs/EC2-Route.cf
|
|
227
|
+
- specs/EC2-RouteTable.cf
|
|
228
|
+
- specs/EC2-SecurityGroup.cf
|
|
229
|
+
- specs/EC2-SecurityGroupEgress.cf
|
|
230
|
+
- specs/EC2-SecurityGroupIngress.cf
|
|
231
|
+
- specs/EC2-SpotFleet.cf
|
|
232
|
+
- specs/EC2-Subnet.cf
|
|
233
|
+
- specs/EC2-SubnetNetworkAclAssociation.cf
|
|
234
|
+
- specs/EC2-SubnetRouteTableAssociation.cf
|
|
235
|
+
- specs/EC2-VPC.cf
|
|
236
|
+
- specs/EC2-VPCDHCPOptionsAssociation.cf
|
|
237
|
+
- specs/EC2-VPCEndpoint.cf
|
|
238
|
+
- specs/EC2-VPCGatewayAttachment.cf
|
|
239
|
+
- specs/EC2-VPCPeeringConnection.cf
|
|
240
|
+
- specs/EC2-VPNConnection.cf
|
|
241
|
+
- specs/EC2-VPNConnectionRoute.cf
|
|
242
|
+
- specs/EC2-VPNGateway.cf
|
|
243
|
+
- specs/EC2-VPNGatewayRoutePropagation.cf
|
|
244
|
+
- specs/EC2-Volume.cf
|
|
245
|
+
- specs/EC2-VolumeAttachment.cf
|
|
246
|
+
- specs/ECR-Repository.cf
|
|
247
|
+
- specs/ECS-Cluster.cf
|
|
248
|
+
- specs/ECS-Service.cf
|
|
249
|
+
- specs/ECS-TaskDefinition.cf
|
|
250
|
+
- specs/EFS-FileSystem.cf
|
|
251
|
+
- specs/EFS-MountTarget.cf
|
|
252
|
+
- specs/EMR-Cluster.cf
|
|
253
|
+
- specs/EMR-InstanceGroupConfig.cf
|
|
254
|
+
- specs/EMR-Step.cf
|
|
255
|
+
- specs/ElastiCache-CacheCluster.cf
|
|
256
|
+
- specs/ElastiCache-ParameterGroup.cf
|
|
257
|
+
- specs/ElastiCache-ReplicationGroup.cf
|
|
258
|
+
- specs/ElastiCache-SecurityGroup.cf
|
|
259
|
+
- specs/ElastiCache-SecurityGroupIngress.cf
|
|
260
|
+
- specs/ElastiCache-SubnetGroup.cf
|
|
261
|
+
- specs/ElasticBeanstalk-Application.cf
|
|
262
|
+
- specs/ElasticBeanstalk-ApplicationVersion.cf
|
|
263
|
+
- specs/ElasticBeanstalk-ConfigurationTemplate.cf
|
|
264
|
+
- specs/ElasticBeanstalk-Environment.cf
|
|
265
|
+
- specs/ElasticLoadBalancing-LoadBalancer.cf
|
|
266
|
+
- specs/Elasticsearch-Domain.cf
|
|
267
|
+
- specs/Events-Rule.cf
|
|
268
|
+
- specs/GameLift-Alias.cf
|
|
269
|
+
- specs/GameLift-Build.cf
|
|
270
|
+
- specs/GameLift-Fleet.cf
|
|
271
|
+
- specs/IAM-AccessKey.cf
|
|
272
|
+
- specs/IAM-Group.cf
|
|
273
|
+
- specs/IAM-InstanceProfile.cf
|
|
274
|
+
- specs/IAM-ManagedPolicy.cf
|
|
275
|
+
- specs/IAM-Policy.cf
|
|
276
|
+
- specs/IAM-Role.cf
|
|
277
|
+
- specs/IAM-User.cf
|
|
278
|
+
- specs/IAM-UserToGroupAddition.cf
|
|
279
|
+
- specs/KMS-Key.cf
|
|
280
|
+
- specs/Kinesis-Stream.cf
|
|
281
|
+
- specs/KinesisFirehose-DeliveryStream.cf
|
|
282
|
+
- specs/Lambda-Alias.cf
|
|
283
|
+
- specs/Lambda-EventSourceMapping.cf
|
|
284
|
+
- specs/Lambda-Function.cf
|
|
285
|
+
- specs/Lambda-Permission.cf
|
|
286
|
+
- specs/Lambda-Version.cf
|
|
287
|
+
- specs/Logs-Destination.cf
|
|
288
|
+
- specs/Logs-LogGroup.cf
|
|
289
|
+
- specs/Logs-LogStream.cf
|
|
290
|
+
- specs/Logs-MetricFilter.cf
|
|
291
|
+
- specs/Logs-SubscriptionFilter.cf
|
|
292
|
+
- specs/OpsWorks-App.cf
|
|
293
|
+
- specs/OpsWorks-ElasticLoadBalancerAttachment.cf
|
|
294
|
+
- specs/OpsWorks-Instance.cf
|
|
295
|
+
- specs/OpsWorks-Layer.cf
|
|
296
|
+
- specs/OpsWorks-Stack.cf
|
|
297
|
+
- specs/RDS-DBCluster.cf
|
|
298
|
+
- specs/RDS-DBClusterParameterGroup.cf
|
|
299
|
+
- specs/RDS-DBInstance.cf
|
|
300
|
+
- specs/RDS-DBParameterGroup.cf
|
|
301
|
+
- specs/RDS-DBSecurityGroup.cf
|
|
302
|
+
- specs/RDS-DBSecurityGroupIngress.cf
|
|
303
|
+
- specs/RDS-DBSubnetGroup.cf
|
|
304
|
+
- specs/RDS-EventSubscription.cf
|
|
305
|
+
- specs/RDS-OptionGroup.cf
|
|
306
|
+
- specs/Redshift-Cluster.cf
|
|
307
|
+
- specs/Redshift-ClusterParameterGroup.cf
|
|
308
|
+
- specs/Redshift-ClusterSecurityGroup.cf
|
|
309
|
+
- specs/Redshift-ClusterSecurityGroupIngress.cf
|
|
310
|
+
- specs/Redshift-ClusterSubnetGroup.cf
|
|
311
|
+
- specs/Route53-HealthCheck.cf
|
|
312
|
+
- specs/Route53-HostedZone.cf
|
|
313
|
+
- specs/Route53-RecordSet.cf
|
|
314
|
+
- specs/Route53-RecordSetGroup.cf
|
|
315
|
+
- specs/S3-Bucket.cf
|
|
316
|
+
- specs/S3-BucketPolicy.cf
|
|
317
|
+
- specs/SDB-Domain.cf
|
|
318
|
+
- specs/SNS-Topic.cf
|
|
319
|
+
- specs/SNS-TopicPolicy.cf
|
|
320
|
+
- specs/SQS-Queue.cf
|
|
321
|
+
- specs/SQS-QueuePolicy.cf
|
|
322
|
+
- specs/SSM-Document.cf
|
|
323
|
+
- specs/WAF-ByteMatchSet.cf
|
|
324
|
+
- specs/WAF-IPSet.cf
|
|
325
|
+
- specs/WAF-Rule.cf
|
|
326
|
+
- specs/WAF-SizeConstraintSet.cf
|
|
327
|
+
- specs/WAF-SqlInjectionMatchSet.cf
|
|
328
|
+
- specs/WAF-WebACL.cf
|
|
329
|
+
- specs/WAF-XssMatchSet.cf
|
|
330
|
+
- specs/WorkSpaces-Workspace.cf
|
|
331
|
+
homepage: https://github.com/localytics/humidifier
|
|
332
|
+
licenses:
|
|
333
|
+
- MIT
|
|
334
|
+
metadata: {}
|
|
335
|
+
post_install_message:
|
|
336
|
+
rdoc_options: []
|
|
337
|
+
require_paths:
|
|
338
|
+
- lib
|
|
339
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
340
|
+
requirements:
|
|
341
|
+
- - ">="
|
|
342
|
+
- !ruby/object:Gem::Version
|
|
343
|
+
version: 2.0.0
|
|
344
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
345
|
+
requirements:
|
|
346
|
+
- - ">="
|
|
347
|
+
- !ruby/object:Gem::Version
|
|
348
|
+
version: '0'
|
|
349
|
+
requirements: []
|
|
350
|
+
rubyforge_project:
|
|
351
|
+
rubygems_version: 2.5.1
|
|
352
|
+
signing_key:
|
|
353
|
+
specification_version: 4
|
|
354
|
+
summary: CloudFormation made easy
|
|
355
|
+
test_files: []
|
|
356
|
+
has_rdoc:
|