terraform-provider-vault
terraform-provider-vault copied to clipboard
[Bug]: disable = false in vault_pki_secret_backend_crl_config not applied
Terraform Core Version
1.12.2
Terraform Vault Provider Version
5.0.0
Vault Server Version
1.19.7
Affected Resource(s)
Using the vault_pki_secret_backend_crl_config resource to set disable = false does not enable CRL generation. Despite:
The plan showing the change disable: true -> false
terraform apply running without errors
Expected Behavior
Terraform should apply disable = false successfully, enabling CRL generation.
Actual Behavior
It remains disable = true
Relevant Error/Panic Output Snippet
Terraform Configuration Files
resource "vault_pki_secret_backend_crl_config" "crl_config" { backend = vault_mount.pki.path expiry = "4h" disable = false }
Steps to Reproduce
terraform init terraform apply
Debug Output
No response
Panic Output
No response
Important Factoids
No response
References
No response
Would you like to implement a fix?
No