dns_a_record_set and dns_aaaa_record_set crashes #15

Open
andreaso opened this Issue Oct 4, 2017 · 1 comment

Comments

Projects
None yet
3 participants

andreaso commented Oct 4, 2017

Terraform Version

  • Terraform v0.10.7
  • terraform-provider-dns 1.0.0

Affected Resource(s)

Please list the resources as a list, for example:

  • dns_a_record_set
  • dns_aaaa_record_set

Terraform Configuration Files

provider "dns" {
  update {
    server        = "85.119.83.73"
    key_name      = "wensicia-infra"
    key_algorithm = "hmac-sha256"
    key_secret    = "<redacted>"
  }
}

resource "dns_a_record_set" "test1" {
  zone = "arrakis.se."
  name = "test1.arrakis.se."
  addresses = [
    "127.0.0.1",
  ]
}

Debug Output

https://gist.github.com/andreaso/c5562dcb288de54de893ecb8430410c7

Panic Output

https://gist.github.com/andreaso/f248319babb6774ba98536dc7b7d5dc1

Expected Behavior

I expected an A record to be created.

Actual Behavior

Terraform crashed.

Steps to Reproduce

Please list the steps required to reproduce the issue, for example:

  1. terraform apply

Getting the same crash with dns_aaaa_record_set.

kradalby commented Nov 2, 2017

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment