forked from marcelo-ochoa/oci-swarm-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tf_msz.tfvars.example
58 lines (47 loc) · 2.71 KB
/
tf_msz.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
# Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved.
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
#
#############################################################################################################################
# NOTE: Before use the terraform local or CloudShell, you need to build the binaries of the application. #
# Instructions here: https://github.com/oracle-quickstart/oci-cloudnative/blob/master/deploy/basic/README.md#build #
# #
# If using Oracle Resource Manager, the stack already include the binaries. ORM does not use the tfvars #
#############################################################################################################################
# OCI authentication
tenancy_ocid = "ocid1.tenancy....."
fingerprint = "" # e.g.: "5f:53:..." or leave blank if using CloudShell
user_ocid = "" # e.g.: "ocid1.user..." or leave blank if using CloudShell
private_key_path = "" # e.g.: "/users/user/.oci/oci_api_key.pem" or leave blank if using CloudShell
user_email = "" # e.g.: "[email protected]"
# Deployment compartment
compartment_ocid = "ocid1.compartment...."
# region
region = "us-phoenix-1"
# Compute
num_nodes = 2
instance_shape = "VM.Standard2.1"
instance_visibility = "Private"
generate_public_ssh_key = true
public_ssh_key = ""
is_pv_encryption_in_transit_enabled = true
# Network Details
lb_shape = "100Mbps"
lb_compartment_ocid = "" # e.g.: "ocid1.compartment..." The lb_compartment_ocid need to point to a non-MSZ compartment that allow IG
create_secondary_vcn = true
# Autonomous Database
autonomous_database_license_model = "LICENSE_INCLUDED" # LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE
autonomous_database_is_free_tier = false
autonomous_database_visibility = "Private"
autonomous_database_name = "OciSwarmDB"
autonomous_database_db_version = "19c"
autonomous_database_cpu_core_count = 1
autonomous_database_data_storage_size_in_tbs = 1
# Encryption (OCI Vault/Key Management/KMS)
use_encryption_from_oci_vault = true
create_new_encryption_key = true
encryption_key_id = ""
# Always Free only or support other shapes
use_only_always_free_elegible_resources = false
# Object Storage
object_storage_oci_swarm_media_compartment_ocid = "" # e.g.: "ocid1.compartment..."
object_storage_oci_swarm_media_visibility = "Private"