Skip to content

Commit d1dcd96

Browse files
committed
terraform/OCI: Make undefined variables default to "null"
This was missed during some last minute clean-ups before I pushed. Signed-off-by: Chuck Lever <[email protected]>
1 parent d05f2d4 commit d1dcd96

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

terraform/oci/vars.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,19 @@ variable "oci_tenancy_ocid" {
6767
}
6868

6969
variable "oci_user_fingerprint" {
70+
default = null
7071
description = "Fingerprint for the key pair being used"
7172
type = string
7273
}
7374

7475
variable "oci_user_ocid" {
76+
default = null
7577
description = "OCID of the user calling the API"
7678
type = string
7779
}
7880

7981
variable "oci_user_private_key_path" {
82+
default = null
8083
description = "The path of the private key stored on your computer"
8184
type = string
8285
}

0 commit comments

Comments
 (0)