-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
29 lines (26 loc) · 862 Bytes
/
variables.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
# IP address to connect to the host
variable "SSH_HOST" {
type = string
description = "The IP of the SSH host to connect to"
default = "192.168.2.138"
}
# Username to be authenticated in the host
# Warning: sudo permissions required
variable "SSH_USERNAME" {
type = string
description = "The username to be authenticated in the SSH host"
default = "root"
}
# Password to be authenticated in the host
# Warning: sudo permissions required
variable "SSH_PASSWORD" {
type = string
description = "The password to be authenticated in the SSH host"
default = "placeholder"
}
# Path to the ssh key (public or private) to be uploaded to the host
# This key will be used for API calls
variable "SSH_KEY_PATH" {
description = "The path to the ssh key that will be authorized in the SSH host"
type = string
}