We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
first off, thanks for making this lib, much appreciated.
here is my config:
resource "typesense_collection" "user" { name = "user" fields { name = "name" optional = true type = "string" } fields { name = "id" optional = false type = "string" index = true } }
and the issue is that every time I run terraform apply, I get
# module.application.module.search.typesense_collection.user must be replaced -/+ resource "typesense_collection" "user" { ~ id = "user" -> (known after apply) name = "user" ~ num_documents = 1 -> (known after apply) ~ fields { ~ facet = false -> (known after apply) name = "name" # (3 unchanged attributes hidden) } + fields { + facet = (known after apply) + index = true # forces replacement + name = "id" + optional = false # forces replacement + type = "string" # forces replacement } }
I would assume that this should not force replacement since I haven't change anything.
am I doing something wrong, or is this a bug?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
first off, thanks for making this lib, much appreciated.
here is my config:
and the issue is that every time I run terraform apply, I get
I would assume that this should not force replacement since I haven't change anything.
am I doing something wrong, or is this a bug?
The text was updated successfully, but these errors were encountered: