kumogata-template 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +54 -0
- data/.travis.yml +8 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +75 -0
- data/README.md +204 -0
- data/Rakefile +23 -0
- data/bin/kumogata-template +9 -0
- data/kumogata-template.gemspec +26 -0
- data/lib/kumogata/template.rb +17 -0
- data/lib/kumogata/template/autoscaling.rb +77 -0
- data/lib/kumogata/template/cloudwatch.rb +28 -0
- data/lib/kumogata/template/codedeploy.rb +85 -0
- data/lib/kumogata/template/const.rb +175 -0
- data/lib/kumogata/template/datapipeline.rb +90 -0
- data/lib/kumogata/template/dynamodb.rb +111 -0
- data/lib/kumogata/template/ec2.rb +165 -0
- data/lib/kumogata/template/ecs.rb +119 -0
- data/lib/kumogata/template/elasticbeanstalk.rb +33 -0
- data/lib/kumogata/template/elb.rb +132 -0
- data/lib/kumogata/template/emr.rb +166 -0
- data/lib/kumogata/template/events.rb +25 -0
- data/lib/kumogata/template/ext/argument_parser.rb +8 -0
- data/lib/kumogata/template/ext/kumogata.rb +103 -0
- data/lib/kumogata/template/helper.rb +211 -0
- data/lib/kumogata/template/iam.rb +96 -0
- data/lib/kumogata/template/lambda.rb +34 -0
- data/lib/kumogata/template/s3.rb +223 -0
- data/lib/kumogata/template/sns.rb +25 -0
- data/lib/kumogata/template/version.rb +1 -0
- data/template/_template.rb +25 -0
- data/template/autoscaling-group.rb +47 -0
- data/template/autoscaling-launch-configuration.rb +54 -0
- data/template/autoscaling-lifecycle-hook.rb +27 -0
- data/template/autoscaling-scaling-policy.rb +33 -0
- data/template/autoscaling-scheduled-action.rb +37 -0
- data/template/cloudtrail.rb +39 -0
- data/template/cloudwatch-alarm.rb +45 -0
- data/template/codedeploy-application.rb +15 -0
- data/template/codedeploy-deployment-config.rb +23 -0
- data/template/codedeploy-deployment-group.rb +35 -0
- data/template/datapipeline-pipeline.rb +28 -0
- data/template/dynamodb-table.rb +33 -0
- data/template/ec2-eip-association.rb +23 -0
- data/template/ec2-eip.rb +17 -0
- data/template/ec2-instance.rb +65 -0
- data/template/ec2-internet-gateway.rb +15 -0
- data/template/ec2-nat-gateway.rb +17 -0
- data/template/ec2-network-acl-entry.rb +30 -0
- data/template/ec2-network-acl.rb +17 -0
- data/template/ec2-route-table.rb +17 -0
- data/template/ec2-route.rb +27 -0
- data/template/ec2-security-group.rb +24 -0
- data/template/ec2-subnet-network-acl-association.rb +17 -0
- data/template/ec2-subnet-route-table-association.rb +17 -0
- data/template/ec2-subnet.rb +23 -0
- data/template/ec2-volume-attachment.rb +19 -0
- data/template/ec2-volume.rb +31 -0
- data/template/ec2-vpc-endpoint.rb +23 -0
- data/template/ec2-vpc-gateway-attachment.rb +19 -0
- data/template/ec2-vpc.rb +24 -0
- data/template/ecs-cluster.rb +11 -0
- data/template/ecs-service.rb +24 -0
- data/template/ecs-task-definition.rb +18 -0
- data/template/elasticache-cache-cluster.rb +63 -0
- data/template/elasticache-parameter-group.rb +20 -0
- data/template/elasticache-replication-group.rb +58 -0
- data/template/elasticache-subnet-group.rb +17 -0
- data/template/elasticbeanstalk-application-version.rb +24 -0
- data/template/elasticbeanstalk-application.rb +17 -0
- data/template/elasticbeanstalk-configuration-template.rb +31 -0
- data/template/elasticbeanstalk-environment.rb +44 -0
- data/template/elb-loadbalancer.rb +46 -0
- data/template/emr-cluster.rb +39 -0
- data/template/emr-instance-group-config.rb +33 -0
- data/template/emr-step.rb +22 -0
- data/template/events-rule.rb +28 -0
- data/template/iam-access-key.rb +19 -0
- data/template/iam-group.rb +20 -0
- data/template/iam-instance-profile.rb +17 -0
- data/template/iam-managed-policy.rb +28 -0
- data/template/iam-policy.rb +26 -0
- data/template/iam-role.rb +21 -0
- data/template/iam-user-to-group-addition.rb +17 -0
- data/template/iam-user.rb +24 -0
- data/template/lambda-alias.rb +21 -0
- data/template/lambda-event-source-mapping.rb +24 -0
- data/template/lambda-function.rb +34 -0
- data/template/lambda-permission.rb +26 -0
- data/template/lambda-version.rb +19 -0
- data/template/mappings-ec2.rb +85 -0
- data/template/output-access-key.rb +6 -0
- data/template/output-arn.rb +6 -0
- data/template/output-autoscaling.rb +6 -0
- data/template/output-az.rb +6 -0
- data/template/output-dynamodb.rb +6 -0
- data/template/output-ec2.rb +8 -0
- data/template/output-elasticache.rb +30 -0
- data/template/output-elb.rb +12 -0
- data/template/output-emr.rb +6 -0
- data/template/output-rds.rb +10 -0
- data/template/output-redshift.rb +10 -0
- data/template/output-s3.rb +8 -0
- data/template/output-security-group.rb +5 -0
- data/template/output-sqs.rb +5 -0
- data/template/output-topic.rb +6 -0
- data/template/output-vpc.rb +10 -0
- data/template/output.rb +29 -0
- data/template/parameter-ec2.rb +22 -0
- data/template/parameter-elasticache.rb +9 -0
- data/template/parameter-rds.rb +9 -0
- data/template/parameter-redshift.rb +9 -0
- data/template/parameter.rb +20 -0
- data/template/rds-db-cluster-parameter-group.rb +22 -0
- data/template/rds-db-cluster.rb +47 -0
- data/template/rds-db-instance.rb +82 -0
- data/template/rds-db-parameter-group.rb +21 -0
- data/template/rds-db-subnet-group.rb +19 -0
- data/template/rds-event-subscription.rb +42 -0
- data/template/rds-option-group.rb +23 -0
- data/template/redshift-cluster-parameter-group.rb +19 -0
- data/template/redshift-cluster-subnet-group.rb +17 -0
- data/template/redshift-cluster.rb +60 -0
- data/template/s3-bucket-policy.rb +20 -0
- data/template/s3-bucket.rb +42 -0
- data/template/sns-topic.rb +20 -0
- data/template/sqs-queue.rb +27 -0
- data/test/_template.rb +26 -0
- data/test/abstract_unit.rb +101 -0
- data/test/autoscaling_test.rb +109 -0
- data/test/codedeploy_test.rb +117 -0
- data/test/datapipeline_test.rb +142 -0
- data/test/dynamodb_test.rb +184 -0
- data/test/ec2_test.rb +286 -0
- data/test/ecs_test.rb +135 -0
- data/test/elasticbeanstalk_test.rb +56 -0
- data/test/elb_test.rb +147 -0
- data/test/emr_test.rb +193 -0
- data/test/events_test.rb +22 -0
- data/test/helper_test.rb +547 -0
- data/test/iam_test.rb +93 -0
- data/test/lambda_test.rb +41 -0
- data/test/s3_test.rb +195 -0
- data/test/sns_test.rb +27 -0
- data/test/template/autoscaling-group_test.rb +177 -0
- data/test/template/autoscaling-launch-configuration_test.rb +117 -0
- data/test/template/autoscaling-lifecycle-hook_test.rb +33 -0
- data/test/template/autoscaling-scaling-policy_test.rb +26 -0
- data/test/template/autoscaling-scheduled-action_test.rb +26 -0
- data/test/template/cloudtrail_test.rb +55 -0
- data/test/template/cloudwatch-alarm_test.rb +38 -0
- data/test/template/codedeploy-application_test.rb +21 -0
- data/test/template/codedeploy-deployment-config_test.rb +26 -0
- data/test/template/codedeploy-deployment-group_test.rb +48 -0
- data/test/template/datapipeline-pipeline_test.rb +358 -0
- data/test/template/dynamodb-table_test.rb +94 -0
- data/test/template/ec2-eip-association_test.rb +22 -0
- data/test/template/ec2-eip_test.rb +21 -0
- data/test/template/ec2-instance_test.rb +95 -0
- data/test/template/ec2-internet-gateway_test.rb +48 -0
- data/test/template/ec2-nat-gateway_test.rb +22 -0
- data/test/template/ec2-network-acl-entry_test.rb +61 -0
- data/test/template/ec2-network-acl_test.rb +51 -0
- data/test/template/ec2-route-table_test.rb +49 -0
- data/test/template/ec2-route_test.rb +21 -0
- data/test/template/ec2-security-group_test.rb +50 -0
- data/test/template/ec2-subnet-netwokr-acl-association_test.rb +26 -0
- data/test/template/ec2-subnet-route-table-association_test.rb +22 -0
- data/test/template/ec2-subnet_test.rb +51 -0
- data/test/template/ec2-volume-attachment_test.rb +24 -0
- data/test/template/ec2-volume_test.rb +52 -0
- data/test/template/ec2-vpc-gateway-attachment_test.rb +23 -0
- data/test/template/ec2-vpc_test.rb +102 -0
- data/test/template/ecs-cluster_test.rb +18 -0
- data/test/template/ecs-service_test.rb +29 -0
- data/test/template/ecs-task-definition_test.rb +143 -0
- data/test/template/elasticache-cache-cluster_test.rb +77 -0
- data/test/template/elasticache-parameter-group_test.rb +25 -0
- data/test/template/elasticache-replication-group_test.rb +45 -0
- data/test/template/elasticache-subnet-group_test.rb +26 -0
- data/test/template/elasticbeanstalk-application-version_test.rb +27 -0
- data/test/template/elasticbeanstalk-application_test.rb +21 -0
- data/test/template/elasticbeanstalk-configuration-template_test.rb +23 -0
- data/test/template/elasticbeanstalk-environment_test.rb +56 -0
- data/test/template/elasticbeanstalk-template_test.rb +33 -0
- data/test/template/elb-loadbalancer_test.rb +94 -0
- data/test/template/emr-cluster_test.rb +147 -0
- data/test/template/emr-instance-group-config_test.rb +65 -0
- data/test/template/emr-step_test.rb +82 -0
- data/test/template/events-rule_test.rb +34 -0
- data/test/template/iam-access-key_test.rb +22 -0
- data/test/template/iam-group_test.rb +21 -0
- data/test/template/iam-instance-profile_test.rb +24 -0
- data/test/template/iam-managed-policy_test.rb +35 -0
- data/test/template/iam-policy_test.rb +52 -0
- data/test/template/iam-role_test.rb +37 -0
- data/test/template/iam-user-to-group-addition_test.rb +24 -0
- data/test/template/iam-user_test.rb +21 -0
- data/test/template/lambda-alias_test.rb +46 -0
- data/test/template/lambda-event-source-mapping_test.rb +36 -0
- data/test/template/lambda-function_test.rb +34 -0
- data/test/template/lambda-permission_test.rb +32 -0
- data/test/template/lambda-version_test.rb +27 -0
- data/test/template/mappings-ec2_test.rb +92 -0
- data/test/template/output-access-key_test.rb +30 -0
- data/test/template/output-arn_test.rb +30 -0
- data/test/template/output-autoscaling_test.rb +27 -0
- data/test/template/output-az_test.rb +31 -0
- data/test/template/output-dynamodb_test.rb +21 -0
- data/test/template/output-ec2_test.rb +82 -0
- data/test/template/output-elasticache_test.rb +107 -0
- data/test/template/output-elb_test.rb +48 -0
- data/test/template/output-emr_test.rb +30 -0
- data/test/template/output-rds_test.rb +39 -0
- data/test/template/output-redshift_test.rb +39 -0
- data/test/template/output-s3_test.rb +52 -0
- data/test/template/output-security-group_test.rb +21 -0
- data/test/template/output-sqs_test.rb +21 -0
- data/test/template/output-topic_test.rb +30 -0
- data/test/template/output-vpc_test.rb +48 -0
- data/test/template/output_test.rb +87 -0
- data/test/template/parameter-ec2_test.rb +44 -0
- data/test/template/parameter-elasticache_test.rb +30 -0
- data/test/template/parameter-rds_test.rb +30 -0
- data/test/template/parameter-redshift_test.rb +30 -0
- data/test/template/parameter_test.rb +40 -0
- data/test/template/rds-db-cluster-parameter-group_test.rb +53 -0
- data/test/template/rds-db-cluster_test.rb +84 -0
- data/test/template/rds-db-instance_test.rb +93 -0
- data/test/template/rds-db-parameter-group_test.rb +53 -0
- data/test/template/rds-db-subnet-group.rb +54 -0
- data/test/template/rds-event-subscription_test.rb +48 -0
- data/test/template/rds-option-group_test.rb +56 -0
- data/test/template/redshift-cluster-parameter-group_test.rb +28 -0
- data/test/template/redshift-cluster-subnet-group_test.rb +26 -0
- data/test/template/redshift-cluster_test.rb +47 -0
- data/test/template/s3-bucket-policy_test.rb +40 -0
- data/test/template/s3-bucket_test.rb +127 -0
- data/test/template/sns-topic_test.rb +42 -0
- data/test/template/sqs-queue_test.rb +25 -0
- metadata +468 -0
@@ -0,0 +1,42 @@
|
|
1
|
+
require 'abstract_unit'
|
2
|
+
|
3
|
+
class SnsTopicTest < Minitest::Test
|
4
|
+
def test_normal
|
5
|
+
template = <<-EOS
|
6
|
+
_sns_topic "test", display: "test", subscription: [ { protocol: "sqs", endpoint: "test" }, { protocol: "lambda", endpoint: "test" } ], topic: "test"
|
7
|
+
EOS
|
8
|
+
act_template = run_client_as_json(template)
|
9
|
+
exp_template = <<-EOS
|
10
|
+
{
|
11
|
+
"TestTopic": {
|
12
|
+
"Type": "AWS::SNS::Topic",
|
13
|
+
"Properties": {
|
14
|
+
"DisplayName": "test",
|
15
|
+
"Subscription": [
|
16
|
+
{
|
17
|
+
"Endpoint": {
|
18
|
+
"Fn::GetAtt": [
|
19
|
+
"Test",
|
20
|
+
"Arn"
|
21
|
+
]
|
22
|
+
},
|
23
|
+
"Protocol": "sqs"
|
24
|
+
},
|
25
|
+
{
|
26
|
+
"Endpoint": {
|
27
|
+
"Fn::GetAtt": [
|
28
|
+
"Test",
|
29
|
+
"Arn"
|
30
|
+
]
|
31
|
+
},
|
32
|
+
"Protocol": "lambda"
|
33
|
+
}
|
34
|
+
],
|
35
|
+
"TopicName": "test"
|
36
|
+
}
|
37
|
+
}
|
38
|
+
}
|
39
|
+
EOS
|
40
|
+
assert_equal exp_template.chomp, act_template
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require 'abstract_unit'
|
2
|
+
|
3
|
+
class SqsQueueTest < Minitest::Test
|
4
|
+
def test_normal
|
5
|
+
template = <<-EOS
|
6
|
+
_sqs_queue "test", queue: "test"
|
7
|
+
EOS
|
8
|
+
act_template = run_client_as_json(template)
|
9
|
+
exp_template = <<-EOS
|
10
|
+
{
|
11
|
+
"TestQueue": {
|
12
|
+
"Type": "AWS::SQS::Queue",
|
13
|
+
"Properties": {
|
14
|
+
"DelaySeconds": "0",
|
15
|
+
"MaximumMessageSize": "262144",
|
16
|
+
"MessageRetentionPeriod": "345600",
|
17
|
+
"QueueName": "test",
|
18
|
+
"VisibilityTimeout": "30"
|
19
|
+
}
|
20
|
+
}
|
21
|
+
}
|
22
|
+
EOS
|
23
|
+
assert_equal exp_template.chomp, act_template
|
24
|
+
end
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,468 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: kumogata-template
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Naoya Nakazawa
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-05-20 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: aws-sdk
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: kumogata
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.5.8
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.5.8
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.11'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.11'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '11.1'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '11.1'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: minitest
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '5.8'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '5.8'
|
83
|
+
description: Template for Kumogata. Kumogata is a tool for AWS CloudFormation. It
|
84
|
+
can define a template in Ruby DSL.
|
85
|
+
email:
|
86
|
+
- me@n0ts.org
|
87
|
+
executables:
|
88
|
+
- kumogata-template
|
89
|
+
extensions: []
|
90
|
+
extra_rdoc_files: []
|
91
|
+
files:
|
92
|
+
- ".gitignore"
|
93
|
+
- ".travis.yml"
|
94
|
+
- Gemfile
|
95
|
+
- Gemfile.lock
|
96
|
+
- README.md
|
97
|
+
- Rakefile
|
98
|
+
- bin/kumogata-template
|
99
|
+
- kumogata-template.gemspec
|
100
|
+
- lib/kumogata/template.rb
|
101
|
+
- lib/kumogata/template/autoscaling.rb
|
102
|
+
- lib/kumogata/template/cloudwatch.rb
|
103
|
+
- lib/kumogata/template/codedeploy.rb
|
104
|
+
- lib/kumogata/template/const.rb
|
105
|
+
- lib/kumogata/template/datapipeline.rb
|
106
|
+
- lib/kumogata/template/dynamodb.rb
|
107
|
+
- lib/kumogata/template/ec2.rb
|
108
|
+
- lib/kumogata/template/ecs.rb
|
109
|
+
- lib/kumogata/template/elasticbeanstalk.rb
|
110
|
+
- lib/kumogata/template/elb.rb
|
111
|
+
- lib/kumogata/template/emr.rb
|
112
|
+
- lib/kumogata/template/events.rb
|
113
|
+
- lib/kumogata/template/ext/argument_parser.rb
|
114
|
+
- lib/kumogata/template/ext/kumogata.rb
|
115
|
+
- lib/kumogata/template/helper.rb
|
116
|
+
- lib/kumogata/template/iam.rb
|
117
|
+
- lib/kumogata/template/lambda.rb
|
118
|
+
- lib/kumogata/template/s3.rb
|
119
|
+
- lib/kumogata/template/sns.rb
|
120
|
+
- lib/kumogata/template/version.rb
|
121
|
+
- template/_template.rb
|
122
|
+
- template/autoscaling-group.rb
|
123
|
+
- template/autoscaling-launch-configuration.rb
|
124
|
+
- template/autoscaling-lifecycle-hook.rb
|
125
|
+
- template/autoscaling-scaling-policy.rb
|
126
|
+
- template/autoscaling-scheduled-action.rb
|
127
|
+
- template/cloudtrail.rb
|
128
|
+
- template/cloudwatch-alarm.rb
|
129
|
+
- template/codedeploy-application.rb
|
130
|
+
- template/codedeploy-deployment-config.rb
|
131
|
+
- template/codedeploy-deployment-group.rb
|
132
|
+
- template/datapipeline-pipeline.rb
|
133
|
+
- template/dynamodb-table.rb
|
134
|
+
- template/ec2-eip-association.rb
|
135
|
+
- template/ec2-eip.rb
|
136
|
+
- template/ec2-instance.rb
|
137
|
+
- template/ec2-internet-gateway.rb
|
138
|
+
- template/ec2-nat-gateway.rb
|
139
|
+
- template/ec2-network-acl-entry.rb
|
140
|
+
- template/ec2-network-acl.rb
|
141
|
+
- template/ec2-route-table.rb
|
142
|
+
- template/ec2-route.rb
|
143
|
+
- template/ec2-security-group.rb
|
144
|
+
- template/ec2-subnet-network-acl-association.rb
|
145
|
+
- template/ec2-subnet-route-table-association.rb
|
146
|
+
- template/ec2-subnet.rb
|
147
|
+
- template/ec2-volume-attachment.rb
|
148
|
+
- template/ec2-volume.rb
|
149
|
+
- template/ec2-vpc-endpoint.rb
|
150
|
+
- template/ec2-vpc-gateway-attachment.rb
|
151
|
+
- template/ec2-vpc.rb
|
152
|
+
- template/ecs-cluster.rb
|
153
|
+
- template/ecs-service.rb
|
154
|
+
- template/ecs-task-definition.rb
|
155
|
+
- template/elasticache-cache-cluster.rb
|
156
|
+
- template/elasticache-parameter-group.rb
|
157
|
+
- template/elasticache-replication-group.rb
|
158
|
+
- template/elasticache-subnet-group.rb
|
159
|
+
- template/elasticbeanstalk-application-version.rb
|
160
|
+
- template/elasticbeanstalk-application.rb
|
161
|
+
- template/elasticbeanstalk-configuration-template.rb
|
162
|
+
- template/elasticbeanstalk-environment.rb
|
163
|
+
- template/elb-loadbalancer.rb
|
164
|
+
- template/emr-cluster.rb
|
165
|
+
- template/emr-instance-group-config.rb
|
166
|
+
- template/emr-step.rb
|
167
|
+
- template/events-rule.rb
|
168
|
+
- template/iam-access-key.rb
|
169
|
+
- template/iam-group.rb
|
170
|
+
- template/iam-instance-profile.rb
|
171
|
+
- template/iam-managed-policy.rb
|
172
|
+
- template/iam-policy.rb
|
173
|
+
- template/iam-role.rb
|
174
|
+
- template/iam-user-to-group-addition.rb
|
175
|
+
- template/iam-user.rb
|
176
|
+
- template/lambda-alias.rb
|
177
|
+
- template/lambda-event-source-mapping.rb
|
178
|
+
- template/lambda-function.rb
|
179
|
+
- template/lambda-permission.rb
|
180
|
+
- template/lambda-version.rb
|
181
|
+
- template/mappings-ec2.rb
|
182
|
+
- template/output-access-key.rb
|
183
|
+
- template/output-arn.rb
|
184
|
+
- template/output-autoscaling.rb
|
185
|
+
- template/output-az.rb
|
186
|
+
- template/output-dynamodb.rb
|
187
|
+
- template/output-ec2.rb
|
188
|
+
- template/output-elasticache.rb
|
189
|
+
- template/output-elb.rb
|
190
|
+
- template/output-emr.rb
|
191
|
+
- template/output-rds.rb
|
192
|
+
- template/output-redshift.rb
|
193
|
+
- template/output-s3.rb
|
194
|
+
- template/output-security-group.rb
|
195
|
+
- template/output-sqs.rb
|
196
|
+
- template/output-topic.rb
|
197
|
+
- template/output-vpc.rb
|
198
|
+
- template/output.rb
|
199
|
+
- template/parameter-ec2.rb
|
200
|
+
- template/parameter-elasticache.rb
|
201
|
+
- template/parameter-rds.rb
|
202
|
+
- template/parameter-redshift.rb
|
203
|
+
- template/parameter.rb
|
204
|
+
- template/rds-db-cluster-parameter-group.rb
|
205
|
+
- template/rds-db-cluster.rb
|
206
|
+
- template/rds-db-instance.rb
|
207
|
+
- template/rds-db-parameter-group.rb
|
208
|
+
- template/rds-db-subnet-group.rb
|
209
|
+
- template/rds-event-subscription.rb
|
210
|
+
- template/rds-option-group.rb
|
211
|
+
- template/redshift-cluster-parameter-group.rb
|
212
|
+
- template/redshift-cluster-subnet-group.rb
|
213
|
+
- template/redshift-cluster.rb
|
214
|
+
- template/s3-bucket-policy.rb
|
215
|
+
- template/s3-bucket.rb
|
216
|
+
- template/sns-topic.rb
|
217
|
+
- template/sqs-queue.rb
|
218
|
+
- test/_template.rb
|
219
|
+
- test/abstract_unit.rb
|
220
|
+
- test/autoscaling_test.rb
|
221
|
+
- test/codedeploy_test.rb
|
222
|
+
- test/datapipeline_test.rb
|
223
|
+
- test/dynamodb_test.rb
|
224
|
+
- test/ec2_test.rb
|
225
|
+
- test/ecs_test.rb
|
226
|
+
- test/elasticbeanstalk_test.rb
|
227
|
+
- test/elb_test.rb
|
228
|
+
- test/emr_test.rb
|
229
|
+
- test/events_test.rb
|
230
|
+
- test/helper_test.rb
|
231
|
+
- test/iam_test.rb
|
232
|
+
- test/lambda_test.rb
|
233
|
+
- test/s3_test.rb
|
234
|
+
- test/sns_test.rb
|
235
|
+
- test/template/autoscaling-group_test.rb
|
236
|
+
- test/template/autoscaling-launch-configuration_test.rb
|
237
|
+
- test/template/autoscaling-lifecycle-hook_test.rb
|
238
|
+
- test/template/autoscaling-scaling-policy_test.rb
|
239
|
+
- test/template/autoscaling-scheduled-action_test.rb
|
240
|
+
- test/template/cloudtrail_test.rb
|
241
|
+
- test/template/cloudwatch-alarm_test.rb
|
242
|
+
- test/template/codedeploy-application_test.rb
|
243
|
+
- test/template/codedeploy-deployment-config_test.rb
|
244
|
+
- test/template/codedeploy-deployment-group_test.rb
|
245
|
+
- test/template/datapipeline-pipeline_test.rb
|
246
|
+
- test/template/dynamodb-table_test.rb
|
247
|
+
- test/template/ec2-eip-association_test.rb
|
248
|
+
- test/template/ec2-eip_test.rb
|
249
|
+
- test/template/ec2-instance_test.rb
|
250
|
+
- test/template/ec2-internet-gateway_test.rb
|
251
|
+
- test/template/ec2-nat-gateway_test.rb
|
252
|
+
- test/template/ec2-network-acl-entry_test.rb
|
253
|
+
- test/template/ec2-network-acl_test.rb
|
254
|
+
- test/template/ec2-route-table_test.rb
|
255
|
+
- test/template/ec2-route_test.rb
|
256
|
+
- test/template/ec2-security-group_test.rb
|
257
|
+
- test/template/ec2-subnet-netwokr-acl-association_test.rb
|
258
|
+
- test/template/ec2-subnet-route-table-association_test.rb
|
259
|
+
- test/template/ec2-subnet_test.rb
|
260
|
+
- test/template/ec2-volume-attachment_test.rb
|
261
|
+
- test/template/ec2-volume_test.rb
|
262
|
+
- test/template/ec2-vpc-gateway-attachment_test.rb
|
263
|
+
- test/template/ec2-vpc_test.rb
|
264
|
+
- test/template/ecs-cluster_test.rb
|
265
|
+
- test/template/ecs-service_test.rb
|
266
|
+
- test/template/ecs-task-definition_test.rb
|
267
|
+
- test/template/elasticache-cache-cluster_test.rb
|
268
|
+
- test/template/elasticache-parameter-group_test.rb
|
269
|
+
- test/template/elasticache-replication-group_test.rb
|
270
|
+
- test/template/elasticache-subnet-group_test.rb
|
271
|
+
- test/template/elasticbeanstalk-application-version_test.rb
|
272
|
+
- test/template/elasticbeanstalk-application_test.rb
|
273
|
+
- test/template/elasticbeanstalk-configuration-template_test.rb
|
274
|
+
- test/template/elasticbeanstalk-environment_test.rb
|
275
|
+
- test/template/elasticbeanstalk-template_test.rb
|
276
|
+
- test/template/elb-loadbalancer_test.rb
|
277
|
+
- test/template/emr-cluster_test.rb
|
278
|
+
- test/template/emr-instance-group-config_test.rb
|
279
|
+
- test/template/emr-step_test.rb
|
280
|
+
- test/template/events-rule_test.rb
|
281
|
+
- test/template/iam-access-key_test.rb
|
282
|
+
- test/template/iam-group_test.rb
|
283
|
+
- test/template/iam-instance-profile_test.rb
|
284
|
+
- test/template/iam-managed-policy_test.rb
|
285
|
+
- test/template/iam-policy_test.rb
|
286
|
+
- test/template/iam-role_test.rb
|
287
|
+
- test/template/iam-user-to-group-addition_test.rb
|
288
|
+
- test/template/iam-user_test.rb
|
289
|
+
- test/template/lambda-alias_test.rb
|
290
|
+
- test/template/lambda-event-source-mapping_test.rb
|
291
|
+
- test/template/lambda-function_test.rb
|
292
|
+
- test/template/lambda-permission_test.rb
|
293
|
+
- test/template/lambda-version_test.rb
|
294
|
+
- test/template/mappings-ec2_test.rb
|
295
|
+
- test/template/output-access-key_test.rb
|
296
|
+
- test/template/output-arn_test.rb
|
297
|
+
- test/template/output-autoscaling_test.rb
|
298
|
+
- test/template/output-az_test.rb
|
299
|
+
- test/template/output-dynamodb_test.rb
|
300
|
+
- test/template/output-ec2_test.rb
|
301
|
+
- test/template/output-elasticache_test.rb
|
302
|
+
- test/template/output-elb_test.rb
|
303
|
+
- test/template/output-emr_test.rb
|
304
|
+
- test/template/output-rds_test.rb
|
305
|
+
- test/template/output-redshift_test.rb
|
306
|
+
- test/template/output-s3_test.rb
|
307
|
+
- test/template/output-security-group_test.rb
|
308
|
+
- test/template/output-sqs_test.rb
|
309
|
+
- test/template/output-topic_test.rb
|
310
|
+
- test/template/output-vpc_test.rb
|
311
|
+
- test/template/output_test.rb
|
312
|
+
- test/template/parameter-ec2_test.rb
|
313
|
+
- test/template/parameter-elasticache_test.rb
|
314
|
+
- test/template/parameter-rds_test.rb
|
315
|
+
- test/template/parameter-redshift_test.rb
|
316
|
+
- test/template/parameter_test.rb
|
317
|
+
- test/template/rds-db-cluster-parameter-group_test.rb
|
318
|
+
- test/template/rds-db-cluster_test.rb
|
319
|
+
- test/template/rds-db-instance_test.rb
|
320
|
+
- test/template/rds-db-parameter-group_test.rb
|
321
|
+
- test/template/rds-db-subnet-group.rb
|
322
|
+
- test/template/rds-event-subscription_test.rb
|
323
|
+
- test/template/rds-option-group_test.rb
|
324
|
+
- test/template/redshift-cluster-parameter-group_test.rb
|
325
|
+
- test/template/redshift-cluster-subnet-group_test.rb
|
326
|
+
- test/template/redshift-cluster_test.rb
|
327
|
+
- test/template/s3-bucket-policy_test.rb
|
328
|
+
- test/template/s3-bucket_test.rb
|
329
|
+
- test/template/sns-topic_test.rb
|
330
|
+
- test/template/sqs-queue_test.rb
|
331
|
+
homepage: https://github.com/n0ts/kumogata-template
|
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: '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.6.4
|
352
|
+
signing_key:
|
353
|
+
specification_version: 4
|
354
|
+
summary: Template for Kumogata.
|
355
|
+
test_files:
|
356
|
+
- test/_template.rb
|
357
|
+
- test/abstract_unit.rb
|
358
|
+
- test/autoscaling_test.rb
|
359
|
+
- test/codedeploy_test.rb
|
360
|
+
- test/datapipeline_test.rb
|
361
|
+
- test/dynamodb_test.rb
|
362
|
+
- test/ec2_test.rb
|
363
|
+
- test/ecs_test.rb
|
364
|
+
- test/elasticbeanstalk_test.rb
|
365
|
+
- test/elb_test.rb
|
366
|
+
- test/emr_test.rb
|
367
|
+
- test/events_test.rb
|
368
|
+
- test/helper_test.rb
|
369
|
+
- test/iam_test.rb
|
370
|
+
- test/lambda_test.rb
|
371
|
+
- test/s3_test.rb
|
372
|
+
- test/sns_test.rb
|
373
|
+
- test/template/autoscaling-group_test.rb
|
374
|
+
- test/template/autoscaling-launch-configuration_test.rb
|
375
|
+
- test/template/autoscaling-lifecycle-hook_test.rb
|
376
|
+
- test/template/autoscaling-scaling-policy_test.rb
|
377
|
+
- test/template/autoscaling-scheduled-action_test.rb
|
378
|
+
- test/template/cloudtrail_test.rb
|
379
|
+
- test/template/cloudwatch-alarm_test.rb
|
380
|
+
- test/template/codedeploy-application_test.rb
|
381
|
+
- test/template/codedeploy-deployment-config_test.rb
|
382
|
+
- test/template/codedeploy-deployment-group_test.rb
|
383
|
+
- test/template/datapipeline-pipeline_test.rb
|
384
|
+
- test/template/dynamodb-table_test.rb
|
385
|
+
- test/template/ec2-eip-association_test.rb
|
386
|
+
- test/template/ec2-eip_test.rb
|
387
|
+
- test/template/ec2-instance_test.rb
|
388
|
+
- test/template/ec2-internet-gateway_test.rb
|
389
|
+
- test/template/ec2-nat-gateway_test.rb
|
390
|
+
- test/template/ec2-network-acl-entry_test.rb
|
391
|
+
- test/template/ec2-network-acl_test.rb
|
392
|
+
- test/template/ec2-route-table_test.rb
|
393
|
+
- test/template/ec2-route_test.rb
|
394
|
+
- test/template/ec2-security-group_test.rb
|
395
|
+
- test/template/ec2-subnet-netwokr-acl-association_test.rb
|
396
|
+
- test/template/ec2-subnet-route-table-association_test.rb
|
397
|
+
- test/template/ec2-subnet_test.rb
|
398
|
+
- test/template/ec2-volume-attachment_test.rb
|
399
|
+
- test/template/ec2-volume_test.rb
|
400
|
+
- test/template/ec2-vpc-gateway-attachment_test.rb
|
401
|
+
- test/template/ec2-vpc_test.rb
|
402
|
+
- test/template/ecs-cluster_test.rb
|
403
|
+
- test/template/ecs-service_test.rb
|
404
|
+
- test/template/ecs-task-definition_test.rb
|
405
|
+
- test/template/elasticache-cache-cluster_test.rb
|
406
|
+
- test/template/elasticache-parameter-group_test.rb
|
407
|
+
- test/template/elasticache-replication-group_test.rb
|
408
|
+
- test/template/elasticache-subnet-group_test.rb
|
409
|
+
- test/template/elasticbeanstalk-application-version_test.rb
|
410
|
+
- test/template/elasticbeanstalk-application_test.rb
|
411
|
+
- test/template/elasticbeanstalk-configuration-template_test.rb
|
412
|
+
- test/template/elasticbeanstalk-environment_test.rb
|
413
|
+
- test/template/elasticbeanstalk-template_test.rb
|
414
|
+
- test/template/elb-loadbalancer_test.rb
|
415
|
+
- test/template/emr-cluster_test.rb
|
416
|
+
- test/template/emr-instance-group-config_test.rb
|
417
|
+
- test/template/emr-step_test.rb
|
418
|
+
- test/template/events-rule_test.rb
|
419
|
+
- test/template/iam-access-key_test.rb
|
420
|
+
- test/template/iam-group_test.rb
|
421
|
+
- test/template/iam-instance-profile_test.rb
|
422
|
+
- test/template/iam-managed-policy_test.rb
|
423
|
+
- test/template/iam-policy_test.rb
|
424
|
+
- test/template/iam-role_test.rb
|
425
|
+
- test/template/iam-user-to-group-addition_test.rb
|
426
|
+
- test/template/iam-user_test.rb
|
427
|
+
- test/template/lambda-alias_test.rb
|
428
|
+
- test/template/lambda-event-source-mapping_test.rb
|
429
|
+
- test/template/lambda-function_test.rb
|
430
|
+
- test/template/lambda-permission_test.rb
|
431
|
+
- test/template/lambda-version_test.rb
|
432
|
+
- test/template/mappings-ec2_test.rb
|
433
|
+
- test/template/output-access-key_test.rb
|
434
|
+
- test/template/output-arn_test.rb
|
435
|
+
- test/template/output-autoscaling_test.rb
|
436
|
+
- test/template/output-az_test.rb
|
437
|
+
- test/template/output-dynamodb_test.rb
|
438
|
+
- test/template/output-ec2_test.rb
|
439
|
+
- test/template/output-elasticache_test.rb
|
440
|
+
- test/template/output-elb_test.rb
|
441
|
+
- test/template/output-emr_test.rb
|
442
|
+
- test/template/output-rds_test.rb
|
443
|
+
- test/template/output-redshift_test.rb
|
444
|
+
- test/template/output-s3_test.rb
|
445
|
+
- test/template/output-security-group_test.rb
|
446
|
+
- test/template/output-sqs_test.rb
|
447
|
+
- test/template/output-topic_test.rb
|
448
|
+
- test/template/output-vpc_test.rb
|
449
|
+
- test/template/output_test.rb
|
450
|
+
- test/template/parameter-ec2_test.rb
|
451
|
+
- test/template/parameter-elasticache_test.rb
|
452
|
+
- test/template/parameter-rds_test.rb
|
453
|
+
- test/template/parameter-redshift_test.rb
|
454
|
+
- test/template/parameter_test.rb
|
455
|
+
- test/template/rds-db-cluster-parameter-group_test.rb
|
456
|
+
- test/template/rds-db-cluster_test.rb
|
457
|
+
- test/template/rds-db-instance_test.rb
|
458
|
+
- test/template/rds-db-parameter-group_test.rb
|
459
|
+
- test/template/rds-db-subnet-group.rb
|
460
|
+
- test/template/rds-event-subscription_test.rb
|
461
|
+
- test/template/rds-option-group_test.rb
|
462
|
+
- test/template/redshift-cluster-parameter-group_test.rb
|
463
|
+
- test/template/redshift-cluster-subnet-group_test.rb
|
464
|
+
- test/template/redshift-cluster_test.rb
|
465
|
+
- test/template/s3-bucket-policy_test.rb
|
466
|
+
- test/template/s3-bucket_test.rb
|
467
|
+
- test/template/sns-topic_test.rb
|
468
|
+
- test/template/sqs-queue_test.rb
|