forked from oracle-terraform-modules/terraform-oci-ocne
-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfvars.example
143 lines (82 loc) · 2.05 KB
/
terraform.tfvars.example
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
# Copyright 2020, Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
# Identity and access parameters
api_fingerprint = ""
api_private_key_path = ""
compartment_id = ""
region = "us-phoenix-1"
tenancy_id = ""
user_id = ""
ssh_private_key_path = "/path/to/ssh_private_key"
ssh_public_key_path = "/path/to/ssh_public_key"
# general oci parameters
label_prefix = "dev"
# networking
netnum = {
bastion = 32
int_lb = 16
masters = 48
operator = 33
pub_lb = 17
workers = 1
}
newbits = {
bastion = 13
lb = 11
masters = 12
operator = 13
workers = 2
}
vcn_cidr = "10.0.0.0/16"
vcn_dns_label = "olcne"
vcn_name = "olcne"
# bastion
bastion_access = "ANYWHERE"
bastion_image_id = "Autonomous"
bastion_notification_enabled = true
bastion_notification_endpoint = ""
bastion_notification_protocol = "EMAIL"
bastion_notification_topic = "bastion_server_notification"
bastion_package_upgrade = false
bastion_shape = "VM.Standard.E2.2"
bastion_timezone = "Australia/Sydney"
operator_image_id = "Oracle"
operator_notification_enabled = false
operator_notification_endpoint = ""
operator_notification_protocol = "EMAIL"
operator_notification_topic = ""
operator_package_upgrade = false
operator_shape = "VM.Standard.E2.2"
operator_timezone = "Australia/Sydney"
# availability_domains
availability_domains = {
bastion = 1
operator = 1
}
# olcne
## olcne master
master_image_id = "Oracle"
master_package_upgrade = false
master_shape = "VM.Standard.E2.2"
master_size = 1
master_timezone = "Australia/Sydney"
# private key for operator
secret_id = ""
environment_name = "dev"
cluster_name = "olcne"
helm_version = "3.1.1"
create_kata_runtime = false
kata_runtime_class_name = "kata"
# certificate
org_unit = ""
org = ""
city = ""
state = ""
country = ""
common_name = ""
# olcne worker
worker_image_id = "Oracle"
worker_package_upgrade = false
worker_shape = "VM.Standard.E2.2"
worker_size = 3
worker_timezone = "Australia/Sydney"