hashicorp / terraform-provider-vault

Terraform Vault provider
https://www.terraform.io/docs/providers/vault/
Mozilla Public License 2.0
451 stars 535 forks source link

[Enhancement]: `signature_bits ` field missing on some resources #2239

Open rrey opened 1 month ago

rrey commented 1 month ago

Description

The signature_bits field is missing in some resources like vault_pki_secret_backend_intermediate_cert_request and vault_pki_secret_backend_root_cert making it impossible to define the algorithm of for the key generated by these resources.

Affected Resource(s) and/or Data Source(s)

Maybe others

Potential Terraform Configuration

resource "vault_pki_secret_backend_root_cert" "root" {
  backend            = vault_mount.pki.path
  type               = "internal"
  common_name        = "example.com"
  key_type           = "rsa"
  key_bits           = "4096"
  signature_bits     = "384"
}

References

No response

Would you like to implement a fix?

None