Git Product home page Git Product logo

Comments (6)

dannyk81 avatar dannyk81 commented on September 27, 2024 1

Have a prototype of zone import already working

configuration:

resource "powerdns_zone" "test_com" {
  name = "test.com."
  kind = "Master"

  nameservers = formatlist("%s.", keys(local.pdns_servers))
}
$ terraform import powerdns_zone.test_com '{"name": "test.com."}'
Acquiring state lock. This may take a few moments...
powerdns_zone.test_com: Importing from ID "{\"name\": \"test.com.\"}"...
powerdns_zone.test_com: Import prepared!
  Prepared powerdns_zone for import
powerdns_zone.test_com: Refreshing state... [id=test.com.]

Import successful!

The resources that were imported are shown above. These resources are now in
your Terraform state and will henceforth be managed by Terraform.

Releasing state lock. This may take a few moments...
ck. This may take a few moments...
powerdns_zone.test_com: Importing from ID "{\"name\": \"test.com.\"}"...
powerdns_zone.test_com: Import prepared!
  Prepared powerdns_zone for import
powerdns_zone.test_com: Refreshing state... [id=test.com.]

Import successful!

state show:

terraform state show powerdns_zone.test_com
# powerdns_zone.test_com:
resource "powerdns_zone" "test_com" {
    id          = "test.com."
    kind        = "Master"
    name        = "test.com."
    nameservers = [
        "pdns-01.test.com.",
        "pdns-02.test.com.",
    ]
}

and a plan after import:

powerdns_zone.test_com: Refreshing state... [id=test.com.]

------------------------------------------------------------------------

No changes. Infrastructure is up-to-date.

I'll keep working on the same for record resource and will also add tests.

from terraform-provider-powerdns.

splashx avatar splashx commented on September 27, 2024 1

since this is deleting any record with an empty rrSet, shouldn't this line be d.SetId("") after a successful delete?

You're right here, but the fix most likely will involve touching other places so I've opened another issue to track this.

from terraform-provider-powerdns.

splashx avatar splashx commented on September 27, 2024

@dannyk81 Using schema.ImportStatePassthrough wouldn’t work?

from terraform-provider-powerdns.

dannyk81 avatar dannyk81 commented on September 27, 2024

@splashx indeed that was my initial attempt, but using schema.ImportStatePassthrough comes with a challenge: "This function requires the Read function to be able to refresh the entire resource with d.Id() ONLY." https://www.terraform.io/docs/extend/resources/import.html#importer-state-function

  1. with the zone resource, I believe I have a working solution - however it requires changes to the Read and Exists methods, I will push this soon for you to take a look at. Edit: additionally, the Read didn't fetch the zone nameservers which are required attribute for the resource, so I'm adding that as well.

  2. with the record resource, this is tricky - since we need both the Zone name and the Record ID to be able to retrieve the RR Set.

from terraform-provider-powerdns.

dannyk81 avatar dannyk81 commented on September 27, 2024

@splashx just pushed latest changes.

  1. zone resource uses schema.ImportStatePassthrough
  2. tests for importing added to both

I think this is ready for a review, let me know what you think 😄

from terraform-provider-powerdns.

dannyk81 avatar dannyk81 commented on September 27, 2024

@splashx have a question about https://github.com/terraform-providers/terraform-provider-powerdns/blob/3d8c32c5ffe7c6e7932886a86f94d7e51f94eef9/powerdns/resource_powerdns_record.go#L101

since this is deleting any record with an empty rrSet, shouldn't this line be d.SetId("") after a successful delete?

from terraform-provider-powerdns.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.