Hi,
I'm trying to use the puppetlabs aws module to setup a DNS record for the current host. I installed the module from puppet forge, I installed the aws-sdk-core and retries gems, I tried installing them both via puppetserver gem install command and the gem command, also restarted puppetserver, and I'm getting the error in the subject.
I also added the aws access and secret keys in ~/.aws/credentials file.
Puppet version 4.4.2
This is how I'm setting the Route53 entry::
route53_a_record { "${::fqdn}.":
ensure => 'present',
ttl => '300',
values => ["${::ipaddress}"],
zone => 'example.com.', }
I'm using the host's fqdn and ipaddress facts to setup the DNS record.
I would appreciate any help on this.
Thank you.
↧