-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.tf
39 lines (37 loc) · 1011 Bytes
/
vars.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
variable "hostname" {
default = "hostname"
}
variable "domain" {
default = "domain.dev"
}
variable "datacenter" {
default = "lon02"
}
variable "os_reference_code" {
default = "CENTOS_7"
}
variable "cores" {
default = "1"
}
variable "memory" {
default = "1024"
}
variable "disk_size" {
default = "25"
}
variable "network_speed" {
default = "100"
}
variable "tags" {
default = ""
}
variable "ssh_label" {
default = "public ssh key - Jenkins VM"
}
variable "ssh_notes" {
default = ""
}
variable "ssh_key" {
default = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC64reMHg4D7RpuyOHxS3IFOwxMxmjHPfFcBW+ngeZK/4f+NBf0e3xaK89I+GIUlbjyOBLCooH/U9QtVP88YceBmfTMwS+iRSdRJ/9nPKyWL50GODuJoh3TFlCf+Cih0uiNIcJbtAB8f8nZVvpT+WUTSIinzEH7vaiAh0OE2j+vNA4ElTi51DTJFuD6sIGG3lrliwyc9bZAc5xBcUarisFVGD23rrq5tJcee1yC15sgliT9ab2vwwBL3zdf4tk0rZup0oOed0lTfgbQDjr3B+p3dUzT6Z33CDGoTuVzJMS7KXIaDabjwjrRS6s8SqLvTxMIgQ+24/iN/7PXg7Gr7BtD [email protected]"
description = "public SSH key to use in keypair"
}