forked from oracle-terraform-modules/terraform-oci-oke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables-common.tf
61 lines (53 loc) · 2.2 KB
/
variables-common.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Copyright (c) 2022, 2023 Oracle Corporation and/or its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
locals {
# SSH key precedence: base64-encoded PEM > raw PEM > file PEM > null
ssh_key_arg = (coalesce(var.ssh_private_key_path, "none") != "none"
? join(" ", ["-i", var.ssh_private_key_path]) : null)
ssh_private_key = sensitive(
coalesce(var.ssh_private_key, "none") != "none"
? try(base64decode(var.ssh_private_key), var.ssh_private_key)
: coalesce(var.ssh_private_key_path, "none") != "none" ? file(var.ssh_private_key_path) : null
)
ssh_public_key = (
coalesce(var.ssh_public_key, "none") != "none"
? try(base64decode(var.ssh_public_key), var.ssh_public_key)
: coalesce(var.ssh_public_key_path, "none") != "none" ? file(var.ssh_public_key_path) : null
)
}
variable "state_id" {
default = null
description = "Optional Terraform state_id from an existing deployment of the module to re-use with created resources."
type = string
}
variable "output_detail" {
default = false
description = "Whether to include detailed output in state."
type = bool
}
variable "timezone" {
default = "Etc/UTC"
description = "The preferred timezone for workers, operator, and bastion instances."
type = string
}
variable "ssh_private_key" {
default = null
description = "The contents of the SSH private key file, optionally base64-encoded. May be provided via SSH agent when unset."
sensitive = true
type = string
}
variable "ssh_private_key_path" {
default = null
description = "A path on the local filesystem to the SSH private key. May be provided via SSH agent when unset."
type = string
}
variable "ssh_public_key" {
default = null
description = "The contents of the SSH public key file, optionally base64-encoded. Used to allow login for workers/bastion/operator with corresponding private key."
type = string
}
variable "ssh_public_key_path" {
default = null
description = "A path on the local filesystem to the SSH public key. Used to allow login for workers/bastion/operator with corresponding private key."
type = string
}