Sha256: 9c24544eff3c4a9593b032bd20b9ac50c0d551fbad5f136f79d8e964b0ce8573
Contents?: true
Size: 1.21 KB
Versions: 30
Compression:
Stored size: 1.21 KB
Contents
module Awspec::Type class Route53HostedZone < ResourceBase def resource_via_client @resource_via_client ||= find_hosted_zone(@display_name) end def id @id ||= resource_via_client.id if resource_via_client end def resource_via_client_record_sets @resource_via_client_record_sets ||= select_record_sets_by_hosted_zone_id(id) end def has_record_set?(name, type, value, options = {}) name = name.gsub(/\*/, '\\\052') # wildcard support ret = resource_via_client_record_sets.find do |record_set| # next if record_set.type != type.upcase next unless record_set.type.casecmp(type) == 0 if !record_set.resource_records.empty? sorted = record_set.resource_records.map { |r| r.value }.sort.join("\n") ttl = options[:ttl] || record_set[:ttl] record_set.name == name && \ value.split("\n").sort.join("\n") == sorted && \ record_set.ttl == 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
30 entries across 30 versions & 1 rubygems