Skip to content

Commit

Permalink
Add support for ed25519 for intermediate_cert_request (#1278)
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Hilgers committed Jan 5, 2022
1 parent 88efd68 commit 2d666af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func pkiSecretBackendIntermediateCertRequestResource() *schema.Resource {
Description: "The desired key type.",
ForceNew: true,
Default: "rsa",
ValidateFunc: validation.StringInSlice([]string{"rsa", "ec"}, false),
ValidateFunc: validation.StringInSlice([]string{"rsa", "ec", "ed25519"}, false),
},
"key_bits": {
Type: schema.TypeInt,
Expand Down

0 comments on commit 2d666af

Please sign in to comment.