cfnlego 0.3.1 → 0.3.2
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/cfnlego/resources/AWS/Events/Rule.yaml +24 -0
- data/lib/cfnlego/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 131f488948ac0890f73be2a54ca95167ee92dc57
|
|
4
|
+
data.tar.gz: 4e6666e271dbe4ca23932e4637a733f5cb8f72d8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 442e05627d50fd8cd8b916d2411d93c8c6eb8c403d93f17be5c2c52107b4f921a47deb0b41554042338c4504a26a4497bc86b5bca496e5a0537a7eb5333997e5
|
|
7
|
+
data.tar.gz: 48bd9535f22611fe1385367715686c340f8f7c4161ee7beadd15d98b68a6c1b35d8cc82667d82dfe590789b7d7ca4eb13a487e0c67d344b8f82fa40049297773
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
AWS::Events::Rule:
|
|
2
|
+
Properties:
|
|
3
|
+
Description: "\"descriptions\""
|
|
4
|
+
EventPattern: |
|
|
5
|
+
{
|
|
6
|
+
"reference" => "http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/CloudWatchEventsandEventPatterns.html"
|
|
7
|
+
}
|
|
8
|
+
Name: |
|
|
9
|
+
"A name for the rule. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the rule name."
|
|
10
|
+
RoleArn: |
|
|
11
|
+
"The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that grants CloudWatch Events permission to make calls to target services, such as AWS Lambda (Lambda) or Amazon Kinesis streams"
|
|
12
|
+
ScheduleExpression: |
|
|
13
|
+
"cron(<Fields>) or rate(<Value> <Unit>) http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/ScheduledEvents.html"
|
|
14
|
+
State: |
|
|
15
|
+
"ENABLED | DISABLED"
|
|
16
|
+
Targets: |
|
|
17
|
+
[
|
|
18
|
+
{
|
|
19
|
+
"Arn" => "ARN",
|
|
20
|
+
"Id" => "A unique identifier for the target.",
|
|
21
|
+
"Input" => "A JSON-formatted text string that is passed to the target. This value overrides the matched event.",
|
|
22
|
+
"InputPath" => "When you don't want to pass the entire matched event, the JSONPath that describes which part of the event to pass to the target."
|
|
23
|
+
}
|
|
24
|
+
]
|
data/lib/cfnlego/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cfnlego
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin Yung
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-05-
|
|
11
|
+
date: 2016-05-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ruby-beautify
|
|
@@ -123,6 +123,7 @@ files:
|
|
|
123
123
|
- lib/cfnlego/resources/AWS/ElastiCache/SecurityGroupIngress.yaml
|
|
124
124
|
- lib/cfnlego/resources/AWS/ElastiCache/SubnetGroup.yaml
|
|
125
125
|
- lib/cfnlego/resources/AWS/ElasticLoadBalancing/LoadBalancer.yaml
|
|
126
|
+
- lib/cfnlego/resources/AWS/Events/Rule.yaml
|
|
126
127
|
- lib/cfnlego/resources/AWS/IAM/InstanceProfile.yaml
|
|
127
128
|
- lib/cfnlego/resources/AWS/IAM/ManagedPolicy.yaml
|
|
128
129
|
- lib/cfnlego/resources/AWS/IAM/Role.yaml
|