You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/terraformoptions.adoc
+16-2Lines changed: 16 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,8 +43,12 @@ Ensure you review the {uri-terraform-dependencies}[dependencies].
43
43
|none
44
44
45
45
|api_private_key
46
-
|The contents of the private key file to use with OCI API. This takes precedence over private_key_path if both are specified in the provider. *Maybe required depending on your authentication method.*
47
-
|
46
+
|The contents of the private key file to use with OCI API. This takes precedence over private_key_path if both are specified in the provider. *Maybe required depending on your authentication method.* Use the heredoc format if you are specifying the key with this variable.
47
+
|<<EOT
48
+
-----BEGIN RSA PRIVATE KEY-----
49
+
content+of+api+key
50
+
-----END RSA PRIVATE KEY-----
51
+
EOT
48
52
|none
49
53
50
54
|api_private_key_password
@@ -104,6 +108,16 @@ Ensure you review the {uri-terraform-dependencies}[dependencies].
104
108
|Values
105
109
|Default
106
110
111
+
|ssh_private_key
112
+
|The contents of the private ssh key file. Use the heredoc format if you are specifying the private key.
113
+
|
114
+
<<EOT
115
+
-----BEGIN RSA PRIVATE KEY-----
116
+
content+of+api+key
117
+
-----END RSA PRIVATE KEY-----
118
+
EOT
119
+
|
120
+
107
121
|ssh_private_key_path
108
122
|path to ssh private key. The same key will be used to access worker nodes using SSH. *Required* if bastion is enabled.
0 commit comments