Class: Jets::Cfn::Builders::ParentBuilder
- Inherits:
-
Object
- Object
- Jets::Cfn::Builders::ParentBuilder
show all
- Includes:
- AwsServices, Interface, Stagger
- Defined in:
- lib/jets/cfn/builders/parent_builder.rb,
lib/jets/cfn/builders/parent_builder/stagger.rb
Defined Under Namespace
Modules: Stagger
Instance Method Summary
collapse
Methods included from Stagger
#add_stagger, #stagger_batch_size, #stagger_enabled
#apigateway, #aws_lambda, #cfn, #dynamodb, #logs, #s3, #s3_resource, #sns, #sqs, #sts
#lookup, #stack_exists?, #stack_in_progress?
included
Methods included from Interface
#add_description, #add_output, #add_outputs, #add_parameter, #add_parameters, #add_resource, #add_resources, #add_template_resource, #build, #post_process_template, #template, #text, #write
Constructor Details
#initialize(options = {}) ⇒ ParentBuilder
Returns a new instance of ParentBuilder.
9
10
11
12
|
# File 'lib/jets/cfn/builders/parent_builder.rb', line 9
def initialize(options={})
@options = options
@template = ActiveSupport::HashWithIndifferentAccess.new(Resources: {})
end
|
Instance Method Details
#add_api_deployment ⇒ Object
120
121
122
123
|
# File 'lib/jets/cfn/builders/parent_builder.rb', line 120
def add_api_deployment
resource = Jets::Resource::ChildStack::ApiDeployment.new(@options[:s3_bucket])
add_child_resources(resource)
end
|
#add_api_gateway ⇒ Object
101
102
103
104
|
# File 'lib/jets/cfn/builders/parent_builder.rb', line 101
def add_api_gateway
resource = Jets::Resource::ChildStack::ApiGateway.new(@options[:s3_bucket])
add_child_resources(resource)
end
|
#add_api_resources ⇒ Object
106
107
108
109
110
111
112
113
114
115
116
117
118
|
# File 'lib/jets/cfn/builders/parent_builder.rb', line 106
def add_api_resources
expression = "#{Jets::Naming.template_path_prefix}-api-resources-*"
Dir.glob(expression).sort.each do |path|
next unless File.file?(path)
regexp = Regexp.new("#{Jets.config.project_namespace}-api-resources-(\\d+).yml") md = path.match(regexp)
page = md[1]
resource = Jets::Resource::ChildStack::ApiResource.new(@options[:s3_bucket], page: page)
add_child_resources(resource)
end
end
|
#add_app_class_stack(path) ⇒ Object
85
86
87
88
89
|
# File 'lib/jets/cfn/builders/parent_builder.rb', line 85
def add_app_class_stack(path)
resource = Jets::Resource::ChildStack::AppClass.new(@options[:s3_bucket], path: path)
add_stagger(resource)
add_child_resources(resource)
end
|
#add_authorizer_resources(path) ⇒ Object
91
92
93
94
|
# File 'lib/jets/cfn/builders/parent_builder.rb', line 91
def add_authorizer_resources(path)
resource = Jets::Resource::ChildStack::Authorizer.new(@options[:s3_bucket], path: path)
add_child_resources(resource)
end
|
#add_child_resources(resource) ⇒ Object
125
126
127
128
|
# File 'lib/jets/cfn/builders/parent_builder.rb', line 125
def add_child_resources(resource)
add_resource(resource)
add_outputs(resource.outputs)
end
|
#add_shared_resources(path) ⇒ Object
96
97
98
99
|
# File 'lib/jets/cfn/builders/parent_builder.rb', line 96
def add_shared_resources(path)
resource = Jets::Resource::ChildStack::Shared.new(@options[:s3_bucket], path: path)
add_child_resources(resource) if resource.resources?
end
|
#build_child_resources ⇒ Object
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# File 'lib/jets/cfn/builders/parent_builder.rb', line 51
def build_child_resources
for_each_path(:app) do |path|
add_app_class_stack(path)
end
for_each_path(:shared) do |path|
add_shared_resources(path)
end
if full? and !Jets::Router.routes.empty?
for_each_path(:authorizers) do |path|
add_authorizer_resources(path)
end
add_api_gateway
add_api_resources
add_api_deployment
end
end
|
#build_minimal_resources ⇒ Object
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# File 'lib/jets/cfn/builders/parent_builder.rb', line 25
def build_minimal_resources
add_description("Jets: #{Jets.version} Code: #{Util::Source.version}")
resource = Jets::Resource::S3::Bucket.new(logical_id: "s3_bucket",
bucket_encryption: {
server_side_encryption_configuration: [
server_side_encryption_by_default: {
sse_algorithm: "AES256"
}]}
)
add_resource(resource)
add_outputs(resource.outputs)
return unless full?
resource = Jets::Resource::Iam::ApplicationRole.new
add_resource(resource)
add_outputs(resource.outputs)
return if Jets.poly_only?
resource = Jets::Resource::Lambda::GemLayer.new
add_resource(resource)
add_outputs(resource.outputs)
end
|
#compose ⇒ Object
compose is an interface method
15
16
17
18
|
# File 'lib/jets/cfn/builders/parent_builder.rb', line 15
def compose
build_minimal_resources
build_child_resources if full?
end
|
#for_each_path(type) ⇒ Object
73
74
75
76
77
78
79
|
# File 'lib/jets/cfn/builders/parent_builder.rb', line 73
def for_each_path(type)
expression = "#{Jets::Naming.template_path_prefix}-#{type}-*"
Dir.glob(expression).each do |path|
next unless File.file?(path)
yield(path)
end
end
|
#full? ⇒ Boolean
81
82
83
|
# File 'lib/jets/cfn/builders/parent_builder.rb', line 81
def full?
@options[:templates] || @options[:stack_type] == :full
end
|
#template_path ⇒ Object
template_path is an interface method