Fix ignore_{remote,local}_changes setting in resource.yml#4388
Merged
Conversation
298d20c to
a679fa9
Compare
1b567e0 to
13d689b
Compare
Collaborator
|
Commit: 50f274c
25 interesting tests: 9 KNOWN, 7 flaky, 5 SKIP, 4 RECOVERED
Top 50 slowest tests (at least 2 minutes):
|
It was ignoring all changes, not just remote.
13d689b to
834f461
Compare
pietern
approved these changes
Jan 29, 2026
| # Tags updates are not supported by TF. This mirrors that behaviour. | ||
| - tags | ||
| ignore_local_changes: | ||
| - tags |
Contributor
There was a problem hiding this comment.
Why also local? Can they only be set on create?
Contributor
Author
There was a problem hiding this comment.
Yes, AFAIK there is separate API for tags update that we don't implement. cc @shreyas-goenka to confirm.
The tests already record expectation that there is no update on 'tags' local change.
Collaborator
|
Commit: 75c185d
20 interesting tests: 9 KNOWN, 5 SKIP, 4 RECOVERED, 2 flaky
Top 50 slowest tests (at least 2 minutes):
|
deco-sdk-tagging bot
added a commit
that referenced
this pull request
Feb 5, 2026
## Release v0.287.0 ### CLI * Add Lakebase Autoscaling support to `psql` command ([#4399](#4399)) * Add `workspace_id` to the profiles command ([#4404](#4404)) ### Bundles * Add support for Lakebase resources (postgres_projects, postgres_branches, postgres_endpoints) ([#4423](#4423)) * Add missing values to SchemaGrantPrivilege enum ([#4380](#4380)) * Added support for UC catalogs (only in direct mode) ([#4342](#4342)) * engine/direct: Fix updates to fields being ignored for database_catalogs, synced_database_tables (([#4388](#4388))) * engine/direct: Fix migration for database_instances, database_catalog, synced_database_tables ([#4424](#4424)) * Show warning message if valueFrom is used instead of value_from in app config section ([$4429](#4429))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes
Currently, few resources use it (experiments, database_catalogs, synced_database_tables since #4364).
Follow up to #4304
Tests
Existing. I have follow up PRs that make more use of ignore_remote_changes which make this bug apparent.