forked from oracle-quickstart/oci-chef
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
61 lines (45 loc) · 1.33 KB
/
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
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
variable "region" {}
variable "compartment_ocid" {}
variable "chef_server_name" {
default = "chefserver"
}
variable "chef_workstation_name" {
default = "chefworkstation"
}
variable "subnet_ocid" {}
variable "source_ocid" {}
variable "ssh_authorized_keys" {
description = "Public SSH keys content in the ~/.ssh/authorized_keys file for the default user on the instance."
}
variable "vcn_ocid" {}
variable "ssh_user" {
default = "opc"
}
variable "ssh_private_key" {
description = "The private SSH key content to access instance."
}
variable "shape" {
default = "VM.Standard2.1"
}
# Bastion
variable "bastion_public_ip" {}
variable "bastion_user" {}
variable "bastion_private_key" {
description = "The private SSH key content to access instance."
}
# Chef user & org
variable "chef_user_name" {}
variable "chef_user_fist_name" {}
variable "chef_user_last_name" {}
variable "chef_user_password" {}
variable "chef_user_email" {}
variable "chef_org_short_name" {}
variable "chef_org_full_name" {}
# Chef RPMs
variable "chef-server-core_rpm_url" {
default = "https://packages.chef.io/files/stable/chef-server/12.18.14/el/7/chef-server-core-12.18.14-1.el7.x86_64.rpm"
}
variable "chefdk_rpm_url" {
default = "https://packages.chef.io/files/stable/chefdk/3.3.23/el/7/chefdk-3.3.23-1.el7.x86_64.rpm"
}
variable "os_chef_bucket_name" {}