module Awspec::Helper::Finder::Alb

Public Instance Methods

find_alb(id) click to toggle source
# File lib/awspec/helper/finder/alb.rb, line 4
def find_alb(id)
  res = elbv2_client.describe_load_balancers({ names: [id] })
  res.load_balancers.select do |lb|
    lb.type == 'application'
  end.single_resource(id)
rescue
  return nil
end
find_alb_listener(arn) click to toggle source
# File lib/awspec/helper/finder/alb.rb, line 20
def find_alb_listener(arn)
  res = elbv2_client.describe_listeners({ listener_arns: [arn] })
  res.listeners.single_resource(arn)
rescue
  return nil
end
find_alb_target_group(id) click to toggle source
# File lib/awspec/helper/finder/alb.rb, line 27
def find_alb_target_group(id)
  res = elbv2_client.describe_target_groups({ names: [id] })
  res.target_groups.select do |tg|
    %w(HTTP HTTPS).include?(tg.protocol)
  end.single_resource(id)
rescue
  return nil
end
select_alb_by_vpc_id(vpc_id) click to toggle source
# File lib/awspec/helper/finder/alb.rb, line 13
def select_alb_by_vpc_id(vpc_id)
  res = elbv2_client.describe_load_balancers
  res.load_balancers.select do |lb|
    lb.vpc_id == vpc_id && lb.type == 'application'
  end
end
select_rule_by_alb_listener_id(id) click to toggle source
# File lib/awspec/helper/finder/alb.rb, line 36
def select_rule_by_alb_listener_id(id)
  selected = []
  next_marker = nil
  loop do
    res = elbv2_client.describe_rules(marker: next_marker, listener_arn: id)
    selected += res.rules unless res.nil?
    (res.nil? && next_marker = res.next_marker) || break
  end
  selected
end