forked from oracle-terraform-modules/terraform-oci-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfvars.example
95 lines (86 loc) · 2.15 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
# provider parameters
oci_base_provider = {
api_fingerprint = ""
api_private_key_path = ""
region = "us-phoenix-1"
tenancy_id = ""
user_id = ""
}
# general oci parameters
oci_base_general = {
compartment_id = ""
label_prefix = "dev"
}
# networking
oci_base_vcn = {
internet_gateway_enabled = true
nat_gateway_enabled = true
service_gateway_enabled = true
tags = {
department = "finance"
environment = "dev"
}
vcn_cidr = "10.0.0.0/16"
vcn_dns_label = "base"
vcn_name = "base"
}
# bastion
oci_base_bastion = {
availability_domain = 1
bastion_access = "ANYWHERE"
bastion_enabled = true
bastion_image_id = "Autonomous"
bastion_shape = {
# shape = "VM.Standard.E2.2"
shape="VM.Standard.E3.Flex",
ocpus=1,
memory=4,
boot_volume_size=50
}
bastion_upgrade = true
netnum = 32
newbits = 13
notification_enabled = false
notification_endpoint = ""
notification_protocol = "EMAIL"
notification_topic = "bastion"
ssh_private_key_path = ""
ssh_public_key = ""
ssh_public_key_path = ""
tags = {
department = "finace"
environment = "dev"
role = "bastion"
}
timezone = "Australia/Sydney"
}
# operator
oci_base_operator = {
availability_domain = 1
operator_enabled = true
operator_image_id = "Oracle"
operator_shape = {
# shape = "VM.Standard.E2.2"
shape="VM.Standard.E3.Flex",
ocpus=1,
memory=4,
boot_volume_size=50
}
operator_upgrade = false
enable_instance_principal = true
netnum = 33
newbits = 13
notification_enabled = false
notification_endpoint = ""
notification_protocol = "EMAIL"
notification_topic = "operator"
ssh_private_key_path = ""
ssh_public_key = ""
ssh_public_key_path = ""
tags = {
department = "finance"
environment = "dev"
role = "operator"
}
timezone = "Australia/Sydney"
}