Sha256: 09a68f27993d4a4012525299f532a5a118e25c53d2c0f6ab4ea007f39cc3d736
Contents?: true
Size: 1.5 KB
Versions: 5
Compression:
Stored size: 1.5 KB
Contents
module Awspec::Type class Ec2 < Base attr_reader :client def initialize(id) super @client = @ec2_client @resource = find_ec2(id) @id = @resource[:instance_id] if @resource end states = %w( pending running shutting-down terminated stopping stopped ) states.each do |state| define_method state.tr('-', '_') + '?' do @resource[:state][:name] == state end end def has_eip?(ip_address = nil) option = { filters: [{ name: 'instance-id', values: [@id] }] } option[:public_ips] = [ip_address] if ip_address ret = @ec2_client.describe_addresses(option) return ret[:addresses].count == 1 if ip_address return ret[:addresses].count > 0 unless ip_address end def has_security_group?(sg_id) sgs = @resource[:security_groups] ret = sgs.find do |sg| sg[:group_id] == sg_id || sg[:group_name] == sg_id end return true if ret sg2 = find_security_group(sg_id) return false unless sg2.tag_name == sg_id sgs.find do |sg| sg[:group_id] == sg2[:group_id] end end def has_ebs?(volume_id) blocks = @resource[:block_device_mappings] ret = blocks.find do |block| next false unless block[:ebs] block[:ebs][:volume_id] == volume_id end return true if ret blocks2 = find_ebs(volume_id) blocks2[:attachments].find do |attachment| attachment.instance_id == @id end end end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
awspec-0.10.2 | lib/awspec/type/ec2.rb |
awspec-0.10.1 | lib/awspec/type/ec2.rb |
awspec-0.10.0 | lib/awspec/type/ec2.rb |
awspec-0.9.0 | lib/awspec/type/ec2.rb |
awspec-0.8.1 | lib/awspec/type/ec2.rb |