Skip to content

Commit

Permalink
chore: run go generate
Browse files Browse the repository at this point in the history
  • Loading branch information
louisruch committed Aug 26, 2022
1 parent 7164883 commit d6fb6d4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/resources/credential_ssh_private_key.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ resource "boundary_credential_ssh_private_key" "example" {
description = "My first ssh private key credential!"
credential_store_id = boundary_credential_store_static.example.id
username = "my-username"
private_key = file("~/.ssh/id_rsa") # change to valid SSH Private Key
private_key_passphrase = "optional-passphrase" # change to the passphrase of the Private Key if required
private_key = file("~/.ssh/id_rsa") # change to valid SSH Private Key
private_key_passphrase = "optional-passphrase" # change to the passphrase of the Private Key if required
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ resource "boundary_credential_ssh_private_key" "example" {
description = "My first ssh private key credential!"
credential_store_id = boundary_credential_store_static.example.id
username = "my-username"
private_key = file("~/.ssh/id_rsa") # change to valid SSH Private Key
private_key_passphrase = "optional-passphrase" # change to the passphrase of the Private Key if required
private_key = file("~/.ssh/id_rsa") # change to valid SSH Private Key
private_key_passphrase = "optional-passphrase" # change to the passphrase of the Private Key if required
}

0 comments on commit d6fb6d4

Please sign in to comment.