adc/terraform/do_domains/readme.org
josiah 9046da30d9 Manage DO domains in Terraform!!
This is a nice step forward, for me. But there are some challenges
here I need to fix.

The first, and biggest one, is that DO rate limits API requests per
minute to ~250. If I'm doing even a small amount of changes and
iterating a lot I will run into issues with that just due to recrods;
each record pull appears to be its OWN CALL. God.

With that in mind, an easy next step seems like splitting the domain
management into their own submodules to prevent unnecessary calls.

For now, i'm just happy to have this managed in code :).
2023-07-30 09:37:11 -05:00

495 B

Terraform and DigitalOcean domains

Terraform is a fucking baby about everything and I found this really annoying to work on!! It does seem like it works now, though.

FAQs

Importing from existing resources with terraformer

I had to run this, post import, in order to get terraform plan to work, due to a discrepency in how providers are tagged / labelled /somethign?

terraform state replace-provider -auto-approve "registry.terraform.io/-/digitalocean" "digitalocean/digitalocean"