Skip to content

Commit

Permalink
Fix typo in pkiSecretBackendRootCertResource (#1511)
Browse files Browse the repository at this point in the history
Signed-off-by: Stéphane Este-Gracias <sestegra@gmail.com>
  • Loading branch information
sestegra committed Aug 3, 2022
1 parent 7a07c3a commit 97599ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vault/resource_pki_secret_backend_root_cert.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@ func pkiSecretBackendRootCertResource() *schema.Resource {
"type": {
Type: schema.TypeString,
Required: true,
Description: "Type of intermediate to create. Must be either \"exported\" or \"internal\".",
Description: "Type of root to create. Must be either \"exported\" or \"internal\".",
ForceNew: true,
ValidateFunc: validation.StringInSlice([]string{"exported", "internal"}, false),
},
"common_name": {
Type: schema.TypeString,
Required: true,
Description: "CN of intermediate to create.",
Description: "CN of root to create.",
ForceNew: true,
},
"alt_names": {
Expand Down

0 comments on commit 97599ef

Please sign in to comment.