forked from oracle-quickstart/oci-nginx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
81 lines (63 loc) · 2.11 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
variable "ssl_cert_file_path" {
description = "The path of the ssl cert file"
}
variable "ssl_cert_key_file_path" {
description = "The path of the ssl cert private key file"
}
variable "server_http_port" {
description = "The http port for the nginx server"
}
variable "server_https_port" {
description = "The https port for the nginx server"
}
variable "folder_path_for_ssl_cert_files" {
description = "The folder path on nginx server which for saving the ssl cert files"
default = "/etc/pki/nginx"
}
variable "compartment_id" {
description = "Compartment's OCID where VCN will be created"
}
variable "vcn_ocid" {
description = "VCN's OCID "
}
variable "bastion_host_public_ip" {
description = "The public IP of bastion host"
}
variable "bastion_host_user" {
description = "The user name of bastion host"
default = "opc"
}
variable "bastion_ssh_authorized_keys" {
description = "Public SSH keys content to be included in the ~/.ssh/authorized_keys file for the default user on the bastion instance"
}
variable "bastion_ssh_private_key" {
description = "The private key content to access bastion instance"
}
variable "server_ssh_authorized_keys" {
description = "Public SSH keys content to be included in the ~/.ssh/authorized_keys file for the default user on the nginx server(s) instance"
}
variable "server_display_name" {
description = "The display name of the nginx server instance"
default = "nginx_server"
}
variable "server_image_id" {
description = "The OCID of an image for server instance to use "
}
variable "server_subnet_ids" {
description = "List of nginx server subnets' id"
type = "list"
}
variable "server_assign_public_ip" {
description = "Whether the VNIC of nginx server should be assigned a public IP address"
default = false
}
variable "server_count" {
description = "Number of nginx server instances to launch"
}
variable "server_shape" {
description = "Instance shape to use for nginx server instance"
default = "VM.Standard2.1"
}
variable "server_ssh_private_key" {
description = "The private key content to access nginx server(s) instance"
}