-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
79 lines (64 loc) · 2.1 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
variable "tenancy_ocid" {}
variable "user_ocid" {}
variable "fingerprint" {}
variable "private_key_path" {}
variable "region" {}
variable "compartment_ocid" {}
variable "ssh_authorized_keys" {}
variable "ssh_private_key" {}
variable "bastion_authorized_keys" {}
variable "bastion_private_key" {}
variable "image_ids" {
type = "map"
default = {
// Oracle-provided image "Oracle-Linux-7.4-2018.02.21-1"
// See https://docs.us-phoenix-1.oraclecloud.com/images/
us-phoenix-1 = "ocid1.image.oc1.phx.aaaaaaaaupbfz5f5hdvejulmalhyb6goieolullgkpumorbvxlwkaowglslq"
us-ashburn-1 = "ocid1.image.oc1.iad.aaaaaaaajlw3xfie2t5t52uegyhiq2npx7bqyu4uvi2zyu3w3mqayc2bxmaa"
eu-frankfurt-1 = "ocid1.image.oc1.eu-frankfurt-1.aaaaaaaa7d3fsb6272srnftyi4dphdgfjf6gurxqhmv6ileds7ba3m2gltxq"
uk-london-1 = "ocid1.image.oc1.uk-london-1.aaaaaaaaa6h6gj6v4n56mqrbgnosskq63blyv2752g36zerymy63cfkojiiq"
}
}
variable "vcn_cidr" {
default = "10.0.0.0/16"
}
variable "ad_index" {
description = "The index of the availablity domain for PBS. 1, 2, or 3"
default = 1
}
variable "server_display_name" {
description = "The display name of the PBS Pro server."
default = "pbspro-server"
}
variable "server_shape" {
description = "The shape for the PBS Pro server."
default = "VM.Standard2.4"
}
variable "execution_count" {
description = "The number of the PBS Pro execution hosts."
default = 1
}
variable "execution_display_name" {
description = "The display name of the PBS Pro execution hosts."
default = "pbspro-execution"
}
variable "execution_shape" {
description = "The shape for the PBS Pro execution hosts."
default = "VM.Standard2.4"
}
variable "bastion_display_name" {
description = "The display name of the bastion host."
default = "pbs-bastion"
}
variable "bastion_shape" {
description = "The shape of the bastion host."
default = "VM.Standard2.4"
}
variable "bastion_user" {
description = "The user of the bastion host."
default = "opc"
}
variable "bastion_ad_index" {
description = "The availablity domain index of the bastion host."
default = 1
}