-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
85 lines (67 loc) · 2.12 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
80
81
82
83
84
85
variable "compartment_ocid" {
description = "The OCID of the Compartment to create the PBS Pro instance in."
}
variable "availability_domain" {
description = "The Availability Domain for the PBS complex."
}
variable "ssh_authorized_keys" {
description = "Public SSH keys path to be included in the ~/.ssh/authorized_keys file for the default user on the instance."
}
variable "ssh_private_key" {
description = "The private key path to access instances."
}
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.Standard1.1"
}
variable "server_image_id" {
description = "The OCID of the image for the PBS Pro server."
}
variable "server_assign_public_ip" {
description = "Whether the VNIC should be assigned a public IP address."
default = true
}
variable "server_subnet_id" {
description = "The subnet id to host the PBS Pro server."
}
variable "execution_count" {
description = "The number of the PBS Pro execution hosts."
default = 2
}
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.2"
}
variable "execution_image_id" {
description = "The OCID of the image for the PBS Pro execution hosts."
}
variable "execution_assign_public_ip" {
description = "Whether the VNIC should be assigned a public IP address."
default = false
}
variable "execution_subnet_id" {
description = "The subnet id to host the PBS Pro execution hosts."
}
variable "bastion_host" {
description = "The host of bastion."
}
variable "bastion_user" {
description = "The user of the bastion host."
default = "opc"
}
variable "bastion_private_key" {
description = "The private key path to access the bastion instance."
}
variable "private_key_path" {}
variable "tenancy_ocid" {}
variable "user_ocid" {}
variable "fingerprint" {}
variable "region" {}