Getting below error when i am creating a schedule job config with disabled parameter value set as true:
ciphertrust_scheduler.scheduled_backup_job: Creating...
╷
│ Error: Provider produced inconsistent result after apply
│
│ When applying changes to ciphertrust_scheduler.scheduled_backup_job, provider "provider["thales.com/terraform/ciphertrust"]" produced an unexpected new value: .disabled: was cty.True, but now
│ cty.False.
│
│ This is a bug in the provider, which should be reported in the provider's own issue tracker.
When i am creating same with disabled as false, it is working fine.
Below is the script:
resource "ciphertrust_scheduler" "scheduled_backup_job" {
end_date = "2023-03-07T14:24:00Z"
database_backup_params = {
description = "this is my backup job"
}
name = "backup_job"
operation = "database_backup"
disabled = true
run_at = "0 9 * * sat"
run_on = "any"
start_date = "2026-03-07T14:24:00Z"
}
Getting below error when i am creating a schedule job config with disabled parameter value set as true:
ciphertrust_scheduler.scheduled_backup_job: Creating...
╷
│ Error: Provider produced inconsistent result after apply
│
│ When applying changes to ciphertrust_scheduler.scheduled_backup_job, provider "provider["thales.com/terraform/ciphertrust"]" produced an unexpected new value: .disabled: was cty.True, but now
│ cty.False.
│
│ This is a bug in the provider, which should be reported in the provider's own issue tracker.
When i am creating same with disabled as false, it is working fine.
Below is the script:
resource "ciphertrust_scheduler" "scheduled_backup_job" {
end_date = "2023-03-07T14:24:00Z"
database_backup_params = {
description = "this is my backup job"
}
name = "backup_job"
operation = "database_backup"
disabled = true
run_at = "0 9 * * sat"
run_on = "any"
start_date = "2026-03-07T14:24:00Z"
}