我正在尝试使用实例上的puppet事实设置DNS Route53记录。我正在尝试使用puppetlabs的aws模块。我根据他们的指示设置它,安装宝石,重启puppetserver(只是为了确定)。实例具有IAM角色设置,因此可以访问Route53。
我在CentOS 7上使用最新的木偶版本4.5.0。
这是我设置记录的方式:
route53_a_record { "${::fqdn}.":
ensure => 'present',
ttl => '3000',
values => [ "${::ipaddress}" ],
zone => 'example.com.',
}
这是我得到的错误:
Error: Could not find a suitable provider for route53_a_record
puppet describe route53_a_record
仅在提供商下显示'v2'。
对此的任何帮助将不胜感激。