Class: Terrafying::Components::DynamicSet
- Inherits:
-
Terrafying::Context
- Object
- Terrafying::Context
- Terrafying::Components::DynamicSet
- Includes:
- Usable
- Defined in:
- lib/terrafying/components/dynamicset.rb
Instance Attribute Summary collapse
-
#asg ⇒ Object
readonly
Returns the value of attribute asg.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#stack ⇒ Object
readonly
Returns the value of attribute stack.
Class Method Summary collapse
Instance Method Summary collapse
- #attach_load_balancer(load_balancer) ⇒ Object
- #autoscale_on_load_balancer(load_balancer, target_value:, disable_scale_in:) ⇒ Object
- #create_in(vpc, name, options = {}) ⇒ Object
- #default_egress_rule(ident, security_group) ⇒ Object
- #find_in(vpc, name) ⇒ Object
- #generate_template(health_check, instances, launch_config, subnets, tags, rolling_update) ⇒ Object
-
#initialize ⇒ DynamicSet
constructor
A new instance of DynamicSet.
- #instances_by_tags(tags = {}) ⇒ Object
- #profile_from(profile) ⇒ Object
- #resource_name_from(profile) ⇒ Object
Methods included from Usable
#egress_security_group, #ingress_security_group, #path_mtu_setup!, #pingable_by, #pingable_by_cidr, #security_group, #used_by, #used_by_cidr
Constructor Details
#initialize ⇒ DynamicSet
Returns a new instance of DynamicSet.
22 23 24 |
# File 'lib/terrafying/components/dynamicset.rb', line 22 def initialize super end |
Instance Attribute Details
#asg ⇒ Object (readonly)
Returns the value of attribute asg.
10 11 12 |
# File 'lib/terrafying/components/dynamicset.rb', line 10 def asg @asg end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
10 11 12 |
# File 'lib/terrafying/components/dynamicset.rb', line 10 def name @name end |
#stack ⇒ Object (readonly)
Returns the value of attribute stack.
10 11 12 |
# File 'lib/terrafying/components/dynamicset.rb', line 10 def stack @stack end |
Class Method Details
.create_in(vpc, name, options = {}) ⇒ Object
14 15 16 |
# File 'lib/terrafying/components/dynamicset.rb', line 14 def self.create_in(vpc, name, = {}) DynamicSet.new.create_in vpc, name, end |
.find_in(vpc, name) ⇒ Object
18 19 20 |
# File 'lib/terrafying/components/dynamicset.rb', line 18 def self.find_in(vpc, name) DynamicSet.new.find_in vpc, name end |
Instance Method Details
#attach_load_balancer(load_balancer) ⇒ Object
136 137 138 139 140 141 142 143 144 |
# File 'lib/terrafying/components/dynamicset.rb', line 136 def attach_load_balancer(load_balancer) load_balancer.targets.each.with_index do |target, i| resource :aws_autoscaling_attachment, "#{load_balancer.name}-#{@name}-#{i}", autoscaling_group_name: @asg, alb_target_group_arn: target.target_group end used_by(load_balancer) if load_balancer.application? end |
#autoscale_on_load_balancer(load_balancer, target_value:, disable_scale_in:) ⇒ Object
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
# File 'lib/terrafying/components/dynamicset.rb', line 146 def autoscale_on_load_balancer(load_balancer, target_value:, disable_scale_in:) load_balancer.targets.each.with_index do |target, i| policy_name = "#{load_balancer.name}-#{@name}-#{i}" lb_arn = load_balancer.id.to_s.gsub(/id/, 'arn_suffix') tg_arn = target.target_group.to_s.gsub(/id/, 'arn_suffix') listener = "aws_lb_listener.#{target.listener.to_s.split('.')[1]}" = "aws_autoscaling_attachment.#{policy_name}" resource :aws_autoscaling_policy, policy_name, name: policy_name, autoscaling_group_name: @asg, policy_type: 'TargetTrackingScaling', target_tracking_configuration: { predefined_metric_specification: { predefined_metric_type: 'ALBRequestCountPerTarget', resource_label: "#{lb_arn}/#{tg_arn}" }, target_value: target_value, disable_scale_in: disable_scale_in }, depends_on: [listener, ] end end |
#create_in(vpc, name, options = {}) ⇒ Object
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'lib/terrafying/components/dynamicset.rb', line 32 def create_in(vpc, name, = {}) = { public: false, eip: false, ami: aws.ami('base-image-bad2d2af', owners = ['136393635417']), instance_type: 't3a.micro', instances: { min: 1, max: 1, desired: 1, tags: {} }, ports: [], instance_profile: nil, security_groups: [], tags: {}, ssh_group: vpc.ssh_group, subnets: vpc.subnets.fetch(:private, []), depends_on: [], rolling_update: :simple }.merge() ident = "#{tf_safe(vpc.name)}-#{name}" @name = ident @ports = enrich_ports([:ports]) @security_group = resource :aws_security_group, ident, name: "dynamicset-#{ident}", description: "Describe the ingress and egress of the service #{ident}", tags: [:tags], vpc_id: vpc.id default_egress_rule(ident, @security_group) path_mtu_setup! launch_config = resource :aws_launch_configuration, ident, name_prefix: "#{ident}-", image_id: [:ami], instance_type: [:instance_type], user_data: [:user_data], iam_instance_profile: profile_from([:instance_profile]), associate_public_ip_address: [:public], root_block_device: { volume_type: 'gp2', volume_size: 32 }, security_groups: [ vpc.internal_ssh_security_group, @security_group ].push(*[:security_groups]), lifecycle: { create_before_destroy: true }, depends_on: resource_name_from([:instance_profile]) if [:instances][:track] instances = (Name: ident) if instances [:instances] = [:instances].merge(instances) end end if .key?(:health_check) raise 'Health check needs a type and grace_period' if ![:health_check].key?(:type) && ![:health_check].key?(:grace_period) else = { health_check: { type: 'EC2', grace_period: 0 } }.merge() end = { Name: ident, service_name: name }.merge([:tags]).merge([:instances].fetch(:tags, {})).map { |k, v| { Key: k, Value: v, PropagateAtLaunch: true } } resource :aws_cloudformation_stack, ident, name: ident, disable_rollback: true, template_body: generate_template( [:health_check], [:instances], launch_config, [:subnets].map(&:id), , [:rolling_update] ) @stack = "arn:aws:cloudformation:#{aws.region}:#{aws.account_id}:stack/#{ident}/*" @asg = output_of(:aws_cloudformation_stack, ident, 'outputs["AsgName"]') self end |
#default_egress_rule(ident, security_group) ⇒ Object
118 119 120 121 122 123 124 125 126 |
# File 'lib/terrafying/components/dynamicset.rb', line 118 def default_egress_rule(ident, security_group) resource :aws_security_group_rule, "#{ident}-default-egress", security_group_id: security_group, type: 'egress', from_port: 0, to_port: 0, protocol: -1, cidr_blocks: ['0.0.0.0/0'] end |
#find_in(vpc, name) ⇒ Object
26 27 28 29 30 |
# File 'lib/terrafying/components/dynamicset.rb', line 26 def find_in(vpc, name) @name = "#{vpc.name}-#{name}" self end |
#generate_template(health_check, instances, launch_config, subnets, tags, rolling_update) ⇒ Object
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 |
# File 'lib/terrafying/components/dynamicset.rb', line 170 def generate_template(health_check, instances, launch_config, subnets, , rolling_update) template = { Resources: { AutoScalingGroup: { Type: 'AWS::AutoScaling::AutoScalingGroup', Properties: { Cooldown: '300', HealthCheckType: (health_check[:type]).to_s, HealthCheckGracePeriod: health_check[:grace_period], LaunchConfigurationName: launch_config.to_s, MetricsCollection: [ { Granularity: '1Minute', Metrics: %w[ GroupMinSize GroupMaxSize GroupDesiredCapacity GroupInServiceInstances GroupPendingInstances GroupStandbyInstances GroupTerminatingInstances GroupTotalInstances ] } ], MaxSize: instances[:max].to_s, MinSize: instances[:min].to_s, DesiredCapacity: instances[:desired] ? instances[:desired].to_s : nil, Tags: , TerminationPolicies: [ 'Default' ], VPCZoneIdentifier: subnets }.compact } }, Outputs: { AsgName: { Description: 'The name of the auto scaling group', Value: { Ref: 'AutoScalingGroup' } } } } if rolling_update == :signal template[:Resources][:AutoScalingGroup][:UpdatePolicy] = { AutoScalingRollingUpdate: { MinInstancesInService: (instances[:desired]).to_s, MaxBatchSize: (instances[:desired]).to_s, PauseTime: 'PT10M', WaitOnResourceSignals: true, SuspendProcesses: %w[HealthCheck ReplaceUnhealthy AZRebalance AlarmNotification ScheduledActions] } } elsif rolling_update template[:Resources][:AutoScalingGroup][:UpdatePolicy] = { AutoScalingRollingUpdate: { MinInstancesInService: (instances[:min]).to_s, MaxBatchSize: '1', PauseTime: 'PT0S', SuspendProcesses: %w[HealthCheck ReplaceUnhealthy AZRebalance AlarmNotification ScheduledActions] } } end JSON.pretty_generate(template) end |
#instances_by_tags(tags = {}) ⇒ Object
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 |
# File 'lib/terrafying/components/dynamicset.rb', line 240 def ( = {}) begin asgs = aws.() raise "Didn't find only one ASG :(" if asgs.count != 1 instances = { min: asgs[0].min_size, max: asgs[0].max_size, desired: asgs[0].desired_capacity } rescue RuntimeError => e warn("instances_by_tags: #{e}") instances = nil end instances end |
#profile_from(profile) ⇒ Object
128 129 130 |
# File 'lib/terrafying/components/dynamicset.rb', line 128 def profile_from(profile) profile.respond_to?(:id) ? profile.id : profile end |
#resource_name_from(profile) ⇒ Object
132 133 134 |
# File 'lib/terrafying/components/dynamicset.rb', line 132 def resource_name_from(profile) profile.respond_to?(:resource_name) ? [profile.resource_name] : [] end |