docs/oracle: fix typo in connection_url example (#13708)
This commit is contained in:
parent
21be98ee7a
commit
17ca494be3
|
@ -115,7 +115,7 @@ plugin will require additional configuration using the `connection_url` paramete
|
|||
```shell
|
||||
vault write database/config/oracle \
|
||||
plugin_name=vault-plugin-database-oracle \
|
||||
connection_url='{{ username }}/{{ password }}@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=<host>(PORT=<port>))(CONNECT_DATA=(SERVICE_NAME=<service_name>))(SECURITY=(SSL_SERVER_CERT_DN="<cert_dn>")(MY_WALLET_DIRECTORY=<path_to_wallet>)))'
|
||||
connection_url='{{ username }}/{{ password }}@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=<host>)(PORT=<port>))(CONNECT_DATA=(SERVICE_NAME=<service_name>))(SECURITY=(SSL_SERVER_CERT_DN="<cert_dn>")(MY_WALLET_DIRECTORY=<path_to_wallet>)))' \
|
||||
allowed_roles="my-role" \
|
||||
username="admin" \
|
||||
password="password"
|
||||
|
@ -127,7 +127,7 @@ to use for connection and verification could be configured using:
|
|||
```shell
|
||||
vault write database/config/oracle \
|
||||
plugin_name=vault-plugin-database-oracle \
|
||||
connection_url='{{ username }}/{{ password }}@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=hashicorp.com)(PORT=1523))(CONNECT_DATA=(SERVICE_NAME=ORCL))(SECURITY=(SSL_SERVER_CERT_DN="CN=hashicorp.com,OU=TestCA,O=HashiCorp=com")(MY_WALLET_DIRECTORY=/etc/oracle/wallets)))'
|
||||
connection_url='{{ username }}/{{ password }}@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=hashicorp.com)(PORT=1523))(CONNECT_DATA=(SERVICE_NAME=ORCL))(SECURITY=(SSL_SERVER_CERT_DN="CN=hashicorp.com,OU=TestCA,O=HashiCorp=com")(MY_WALLET_DIRECTORY=/etc/oracle/wallets)))' \
|
||||
allowed_roles="my-role" \
|
||||
username="admin" \
|
||||
password="password"
|
||||
|
|
Loading…
Reference in New Issue