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
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ See {uri-oci-provider-config}[Terraform OCI Provider] or {uri-oci-rm-config}[Res
50
50
|none
51
51
52
52
|api_private_key
53
-
|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.
53
+
|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. This value may be optionally base64-encoded.
54
54
|<<EOT
55
55
-----BEGIN RSA PRIVATE KEY-----
56
56
content+of+api+key
@@ -123,7 +123,7 @@ region = "ap-sydney-1"
123
123
|Default
124
124
125
125
|ssh_private_key
126
-
|The contents of the private ssh key file. Use the heredoc format if you are specifying the private key.
126
+
|The contents of the private ssh key file. Use the heredoc format if you are specifying the private key. This value may be optionally base64-encoded.
Copy file name to clipboardExpand all lines: variables.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ variable "api_fingerprint" {
10
10
11
11
variable"api_private_key" {
12
12
default=""
13
-
description="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."
13
+
description="The contents of the private key file to use with OCI API, optionally base64-encoded. This takes precedence over private_key_path if both are specified in the provider."
14
14
sensitive=true
15
15
type=string
16
16
}
@@ -93,7 +93,7 @@ variable "label_prefix" {
93
93
# ssh keys
94
94
variable"ssh_private_key" {
95
95
default=""
96
-
description="The contents of the private ssh key file."
96
+
description="The contents of the private ssh key file, optionally base64-encoded."
0 commit comments