Skip to content

Commit

Permalink
Rewarding description for 2 fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan De Marino committed Feb 21, 2022
1 parent 1d69c77 commit 0cb8f85
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions internal/provider/data_source_public_key.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ func dataSourcePublicKey() *schema.Resource {

"public_key_fingerprint_md5": {
Type: schema.TypeString,
Description: "Fingerprint of the public key as MD5 hashing",
Description: "Fingerprint of the public key data in OpenSSH MD5 hash format",
Computed: true,
},

"public_key_fingerprint_sha256": {
Type: schema.TypeString,
Description: "Fingerprint of the public key as SHA256 hashing",
Description: "Fingerprint of the public key data in OpenSSH SHA256 hash format",
Computed: true,
},
},
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/resource_private_key.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,13 @@ func resourcePrivateKey() *schema.Resource {

"public_key_fingerprint_md5": {
Type: schema.TypeString,
Description: "Fingerprint of the public key as MD5 hashing",
Description: "Fingerprint of the public key data in OpenSSH MD5 hash format",
Computed: true,
},

"public_key_fingerprint_sha256": {
Type: schema.TypeString,
Description: "Fingerprint of the public key as SHA256 hashing",
Description: "Fingerprint of the public key data in OpenSSH SHA256 hash format",
Computed: true,
},
},
Expand Down

0 comments on commit 0cb8f85

Please sign in to comment.