AnjK
AnjK

Reputation: 3583

How to automate adding a dns entry in easydns with terraform?

I am automating creating a instance in oracle cloud and deploy some apps in it.

After setting up the instance, I want to add a dns entry that maps the public IP of the new instance to a FQDN in easydns.com. And also want to generate Let's Encrypt TLS certificates for that FQDN using certbot in the instance. Currently, I'm doing this manually.

I want to automate this second part using Terraform or ansible.

Can someone help me in this?

Upvotes: 0

Views: 511

Answers (1)

Grzegorz Oledzki
Grzegorz Oledzki

Reputation: 24271

You are right. The linked provider is not for creating DNS entries.

You need to find (implement?) a Terraform provider for EasyDNS DNS entries. I cannot see one in either of the lists:

Maybe there's some low-profile open-source project. Or you can ask the vendor if they have any Terraform provider or plans to add it.

Upvotes: 1

Related Questions