Skip to content

Commit 991ec12

Browse files
authored
[Fix] Mark task.spark_jar_task.run_as_repl as computed to fix configuration drift (#4452)
## Changes <!-- Summary of your changes that are easy to understand --> Resolves #4450 ## Tests <!-- How is this tested? Please see the checklist below and also describe any other relevant tests --> - [ ] `make test` run locally - [ ] relevant change in `docs/` folder - [ ] covered with integration tests in `internal/acceptance` - [ ] using Go SDK - [ ] using TF Plugin Framework
1 parent bd8edc3 commit 991ec12

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

NEXT_CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
### Bug Fixes
88

99
* Correctly handle PAT and OBO tokens without expiration ([#4444](https://github.com/databricks/terraform-provider-databricks/pull/4444)).
10+
* Mark `task.spark_jar_task.run_as_repl` as `computed` to fix configuration drift ([#4452](https://github.com/databricks/terraform-provider-databricks/pull/4452)).
1011

1112
### Documentation
1213

jobs/resource_job.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,7 @@ func (JobSettingsResource) CustomizeSchema(s *common.CustomizableSchema) *common
530530
s.SchemaPath("run_as").SetComputed()
531531
s.SchemaPath("task", "retry_on_timeout").SetComputed()
532532
s.SchemaPath("task", "for_each_task", "task", "retry_on_timeout").SetComputed()
533+
s.SchemaPath("task", "spark_jar_task", "run_as_repl").SetComputed()
533534
s.SchemaPath("format").SetComputed()
534535

535536
// Default

0 commit comments

Comments
 (0)