Sha256: 3c4c892c652ddd6fcaa6c0272b9d0efd209f730489f9afaf249958b04ad1514a

Contents?: true

Size: 968 Bytes

Versions: 60

Compression:

Stored size: 968 Bytes

Contents

module Awspec::Type
  class Alb < ResourceBase
    def resource_via_client
      @resource_via_client ||= find_alb(@display_name)
    end

    def id
      @id ||= resource_via_client.load_balancer_name if resource_via_client
    end

    STATES = %w(
      active provisioning failed
    )

    STATES.each do |state|
      define_method state + '?' do
        resource_via_client.state.code == state
      end
    end

    def has_security_group?(sg_id)
      sgs = resource_via_client.security_groups
      ret = sgs.find do |sg|
        sg == sg_id
      end
      return true if ret
      sg2 = find_security_group(sg_id)
      return true if sgs.include? sg2.group_id
      false
    end

    def has_subnet?(subnet_id)
      azs = resource_via_client.availability_zones
      ret = azs.find do |az|
        az.subnet_id == subnet_id
      end
      return true if ret
      subnet2 = find_subnet(subnet_id)
      subnet2.subnet_id = subnet_id
    end
  end
end

Version data entries

60 entries across 60 versions & 2 rubygems

Version Path
awspec-1.12.1 lib/awspec/type/alb.rb
awspec-1.12.0 lib/awspec/type/alb.rb
awspec-1.11.1 lib/awspec/type/alb.rb
awspec-1.11.0 lib/awspec/type/alb.rb
awspec-1.10.0 lib/awspec/type/alb.rb
awspec-1.9.0 lib/awspec/type/alb.rb
awspec-1.8.0 lib/awspec/type/alb.rb
awspec-1.7.0 lib/awspec/type/alb.rb
awspec-1.6.1 lib/awspec/type/alb.rb
awspec-1.6.0 lib/awspec/type/alb.rb
awspec-1.5.4 lib/awspec/type/alb.rb
awspec-1.5.3 lib/awspec/type/alb.rb
awspec-1.5.2 lib/awspec/type/alb.rb
awspec-1.5.1 lib/awspec/type/alb.rb
awspec-1.5.0 lib/awspec/type/alb.rb
awspec-1.4.3 lib/awspec/type/alb.rb
awspec-1.4.2 lib/awspec/type/alb.rb
awspec-1.4.1 lib/awspec/type/alb.rb
awspec-1.4.0 lib/awspec/type/alb.rb
awspec-1.3.1 lib/awspec/type/alb.rb