Sha256: 5e8c03a97de5352ecf61ab27f6f91e9ab0b7241d3aadef40ca5841a8089ea0ec

Contents?: true

Size: 1.22 KB

Versions: 7

Compression:

Stored size: 1.22 KB

Contents

module Awspec::Type
  class Route53HostedZone < Base
    attr_reader :resource_record_sets

    def initialize(id)
      super
      @resource = find_hosted_zone(id)
      @id = @resource[:id] if @resource
      return unless @id
      res = @route53_client.list_resource_record_sets({
                                                        hosted_zone_id: @id
                                                      })
      @resource_record_sets = res.resource_record_sets
    end

    def has_record_set?(name, type, value, options = {})
      name.gsub!(/\*/, '\\\052') # wildcard support
      ret = @resource_record_sets.find do |record_set|
        next if record_set.type != type.upcase
        options[:ttl] = record_set.ttl unless options[:ttl]
        if !record_set.resource_records.empty?
          v = record_set.resource_records.map { |r| r.value }.join("\n")
          record_set.name == name && \
          value == v && \
          record_set.ttl == options[:ttl]
        else
          # ALIAS
          record_set.name == name && \
          record_set.alias_target.dns_name == options[:alias_dns_name] && \
          record_set.alias_target.hosted_zone_id == options[:alias_hosted_zone_id]
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
awspec-0.25.1 lib/awspec/type/route53_hosted_zone.rb
awspec-0.25.0 lib/awspec/type/route53_hosted_zone.rb
awspec-0.24.2 lib/awspec/type/route53_hosted_zone.rb
awspec-0.24.1 lib/awspec/type/route53_hosted_zone.rb
awspec-0.24.0 lib/awspec/type/route53_hosted_zone.rb
awspec-0.23.0 lib/awspec/type/route53_hosted_zone.rb
awspec-0.22.1 lib/awspec/type/route53_hosted_zone.rb