-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathterraform.tfvars.template
71 lines (60 loc) · 2.39 KB
/
terraform.tfvars.template
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
## Copyright (c) 2019, 2021, Oracle and/or its affiliates.
## Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl.
### OCI Authentication details
tenancy_ocid = "<tenancy OCID>"
user_ocid = "<user OCID>"
fingerprint= "<PEM key fingerprint>"
private_key_path = "<path to the private key that matches the fingerprint above>"
region = "<region in which to operate, example: us-ashburn-1, us-phoenix-1>"
### General
compartment_ocid = "<compartment OCID>"
# stack_display_name = ""
### Notification details
# notification_topic_id = "<notifiction topic OCID>"
### Network Details
# use_existing_vcn = "false"
# existing_vcn_id = "<vcn OCID>"
# existing_application_subnet_id = "<subnet OCID>"
# existing_load_balancer_subnet_id = "<subnet OCID>"
# existing_load_balancer_subnet_id_2 = "<subnet OCID>"
# vcn_cidr = "10.0.0.0/16"
# vcn_dns_label = ""
# application_subnet_cidr = "10.0.1.0/24"
# load_balancer_subnet_cidr = "10.0.4.0/24"
### Load Balancer Details
# create_load_balancer = "false"
# create_public_load_balancer = "true"
# load_balancer_shape = "100Mbps" # "800Mbps"
### Essbase instance details
# instance_shape = "VM.Standard2.4"
# instance_shape_ocpus = "4"
instance_availability_domain = "<Availability domain in region>"
# instance_hostname_label_prefix = ""
# instance_timezone = "UTC"
ssh_authorized_keys = "<Public key used on the instance>"
# data_volume_size = "1024"
# config_volume_size = "64"
# temp_volume_size = "64"
# essbase_admin_username = "admin"
essbase_admin_password_id = "<OCID for vault secret>"
# rcu_schema_prefix = ""
# create_public_essbase_instance = "false"
# enable_essbase_monitoring = "false"
# enable_embedded_proxy = "true"
### Identity Provider Details
# identity_provider = "idcs" # "embedded"
# idcs_tenant = ""
# idcs_client_id = ""
# idcs_client_secret_id = ""
# idcs_external_admin_username = ""
### Database Details
# use_existing_db = "false"
# existing_db_type = "Autonomous Database"
# existing_db_id = "<autonomous database OCID>"
# db_admin_password_id = "<OCID for vault secret>"
# db_license_model = "LICENSE_INCLUDED" # "BRING_YOUR_OWN_LICENSE"
# existing_oci_db_system_database_id = "<oci database system OCID>"
# existing_oci_db_system_database_pdb_name = "<oci database PDB name>"
# oci_db_admin_username = "SYS"
# oci_db_admin_password_id = "<OCID for vault secret>"
# existing_db_connect_string = "<database connection string>"