PortOfPortland / terraform-provider-windns

A Terraform provider for Microsoft Windows DNS
MIT License
39 stars 20 forks source link

Code applied, nothing happened #16

Closed dcardellino closed 3 years ago

dcardellino commented 3 years ago

Hey there,

When i use this terraform provider to create a records for my server in Windows DNS, terraform code gets applied without errors, but when i check the dns server there are no records created.

I use the provider as following: provider "windns" { server = "mydns.domain.intern" username = "automationuser@domain.intern" password = "Sup3rS3cureP4ssw0rd" usessl = true } this is the resource to be created: resource "windns" "arecord" { record_name = "test-record" record_type = "A" zone_name = "domain.intern" ipv4address = "10.1.180.1" }

Am I using this provider wrong? The automation user has domain admin rights so it should be able to create records. I am using this provider with terraform 0.13.4 on macos catalina.

rayterrill commented 3 years ago

@dcardellino Is this still an issue? Just pushed a new release with some bug fixes.

rayterrill commented 3 years ago

Closing - please re-open if still an issue.