-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathterraform.tfvars.example
65 lines (40 loc) · 1.08 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
# Copyright (c) 2019, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
# provider identity parameters
tenancy_id = ""
# general oci parameters
compartment_id = ""
label_prefix = "dev"
# network parameters
availability_domain = 1
nat_route_id = ""
netnum = 33
newbits = 13
nsg_ids = []
vcn_id = ""
# operator host parameters
freeform_tags = {
access = "restricted"
environment = "dev"
role = "operator"
}
operator_image_id = "Oracle"
enable_operator_instance_principal = true
operator_os_version = "8"
operator_shape = {
# shape = "VM.Standard.E2.2"
shape="VM.Standard.E4.Flex",
ocpus=1,
memory=4,
boot_volume_size=50
}
operator_state= "RUNNING"
operator_timezone = "Australia/Sydney"
ssh_public_key = ""
ssh_public_key_path = ""
upgrade_operator = false
# notification
enable_operator_notification = false
operator_notification_endpoint = ""
operator_notification_protocol = "EMAIL"
operator_notification_topic = "operator"