-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoa_demo.auto.tfvars
100 lines (71 loc) · 2.98 KB
/
coa_demo.auto.tfvars
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
# Copyright (c) 2022, Oracle and/or its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
#############################
# TENANCY DETAILS
#############################
# default compartment
default_compartment_id = "ocid1.compartment.oc1..aaaaaaaaes3c3pxlxbcd2upv4vh7wbdfd7vgywuaa75izuu3otrb2omhekaa"
#############################
# naming convension
#############################
# the prefix that will be used for all the names of the OCI artifacts that this automation will provision
names_prefix = "coa-demo-"
# the defined tags to be used for all the artifacts that this automation will provision
#defined_tags = {}
# the freeform tags to be used for all the artifacts that this automation will provision
#freeform_tags = {}
#############################
# COA network
#############################
# The specific network compartment id. If this is null then the default, project level compartment_id will be used.
network_compartment_id = null
# VCN CIDR
vcn_cidr = "10.0.0.0/16"
# private subnet CIDR
private_subnet_cidr = "10.0.0.0/24"
# public subnet CIDR
public_subnet_cidr = "10.0.10.0/24"
#############################
# OCI COA LBaaS
#############################
# The COA LBaaS Shape
load_balancer_shape = "10Mbps"
# LBaaS listening ports
# Accepted values: ["80", "443", "<port number>"]
lbaas_listening_ports = ["80", "443"]
# The path to the load balancer route key CA certificate(CA)
# Only used if port SSL:443 is enabled
lb_ca_certificate = "./certs/ca.crt"
# The path to the load balancer private_key
# Only used if port SSL:443 is enabled
lb_private_key = "./certs/loadbalancer.key"
# The path to the load balancer public_certificate
# Only used if port SSL:443 is enabled
lb_public_certificate = "./certs/loadbalancer.crt"
#############################
# OCI COA WEB Instances
#############################
# The specific compute compartment id. If this is null then the default, project level compartment_id will be used.
compute_compartment_id = null
# The number of cluster nodes to be provisioned
cluster_size = 2
# Compute instances ssh public key
ssh_public_key_path = "<>"
# Compute instances ssh private key
ssh_private_key_path = "<>"
# The name of the shape to be used for all the provisioned compute instances. The automation will automatically figure out the OCID for the spaecific shape name in the target region.
shape = "VM.Standard1.1"
# The name of the image to be used for all the provisioned compute instances. The automation will automatically figure out the OCID for the specific image name in the target region.
image_name = "Oracle-Linux-8.5-2021.12.08-0"
# Which product to install
# Accepted values: ["Apache", "Nginx", "Flask"]
install_product = "Flask"
#############################
# OCI COA ADB
#############################
deploy_adb = "True"
adb_password = "TestATP2022."
adb_workload = "OLTP"
adb_db_name = "ADBCOADEMO1"
adb_display_name = "ADBCOADEMO1"
adb_db_version = "19c"