使用ruby sdk在Route 53上创建ALIAS记录

时间:2014-05-12 16:12:39

标签: ruby amazon-web-services amazon-s3 amazon-route53

我尝试使用带有ruby CNAME gem的ALIAS设置以编程方式创建Route 53 aws-sdk记录。

我无法在文档中找到这样做的方法。我看到如何创建一个记录本身,但不知道如何创建一个ALIAS记录。

rrsets = AWS::Route53::HostedZone.new(hosted_zone_id).rrsets
rrset = rrsets.create('foo.example.com.', 'CNAME', :ttl => 300, :resource_records => [{:value => 'foo.example.com.s3.amazon.weast.uk'}])

1 个答案:

答案 0 :(得分:5)

以下是如何在US-WEST-2中为S3网站端点设置别名的示例。

$irb

irb> require 'aws-sdk'
irb> rrsets = AWS::Route53::HostedZone.new('Z1234').rrsets #replace Z123 with your hosted zone in which you are creating the record.
irb> rrset = rrsets.create('foo.example.com.', 'A', :alias_target => {:hosted_zone_id => 'Z3BJ6K6RIION7M', :dns_name => 's3-website-us-west-2.amazonaws.com' , :evaluate_target_health => false }) # Z3BJ6K6RIION7M is the target hosted zone, in this case Z3BJ6K6RIION7M and can be obtained from the below link, if it's s3.

端点&托管区域ID: http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region

注意:别名记录不能包含TTL,并且需要目标托管区域ID。他们没有TTL的原因是他们使用目标的TTL。