Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bug] Incorrect change detection for email form fields #260

Open
elliotdickison opened this issue Feb 9, 2024 · 0 comments
Open

[bug] Incorrect change detection for email form fields #260

elliotdickison opened this issue Feb 9, 2024 · 0 comments

Comments

@elliotdickison
Copy link
Contributor

elliotdickison commented Feb 9, 2024

Description

If you define a fusionauth_form_field resource with key = "user.email" then Terrform will report that a mysterious type field (not in the docs) has changed on every apply.

Reproduce

resource "fusionauth_form_field" "email" {
  description = "User email"
  key         = "user.email"
  control     = "text"
  name        = "Email"
  required    = true
}

Workaround

Ignore changes on the hidden type field:

resource "fusionauth_form_field" "email" {
  description = "User email"
  key         = "user.email"
  control     = "text"
  name        = "Email"
  required    = true

  lifecycle {
    ignore_changes = [
      type
    ]
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant