wgebis / terraform-provider-mailgun

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add support for argument and attribute "click_tracking" in resource and data source "mailgun_domain"

Szasza opened this issue · comments

Terraform Version

v1.6.4

Affected Resource(s)

  • Resource mailgun_domain
  • Data source mailgun_domain

Terraform Configuration Files

# Create a new Mailgun domain
resource "mailgun_domain" "default" {
  name          = "test.example.com"
  click_tracking   = "yes"
  web_scheme = "https"
}

data "mailgun_domain" "default" {
  name          = "test.example.com"
}

Expected Behavior

  • Have the click_tracking argument applied for the domain from the resource.
  • Have the click_tracking attribute's value shown in the resource and data source's attributes.

Actual Behavior

  • Resource: The click_tracking argument is not supported.
  • Data source: The click_tracking argument is not shown.

References

@wgebis I am working on the code.