-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathterraform.tfvars.template
99 lines (67 loc) · 2.9 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
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
# Copyright © 2020, Oracle and/or its affiliates.
# The Universal Permissive License (UPL), Version 1.0
# AD (Availability Domain to use for creating EBS infrastructure)
# For single AD regions (ap-seoul-1, ap-tokyo-1, ca-toronto-1), use AD = ["1"]
AD = "[<Availability domains in double quotes separated by commas>]"
# CIDR block of VCN to be created
vcn_cidr = "<CIDR of VCN>"
# DNS label of VCN to be created
vcn_dns_label = "<DNS of VCN>"
# Operating system version to be used for application instances. e.g 6.10 or 7.7
linux_os_version = "<Operating System version of Linux>"
# Timezone of compute instance
timezone = "<timezone>"
#Environment prefix to define name of resources
ebs_env_prefix = "<Environment prefix>"
# Freeform tags
freeform_tags = <freeform_tags>
# Number of application instances to be created
ebs_app_instance_count = "<Number of application nodes>"
# Shape of app instance
ebs_app_instance_shape = "<Application instance shape>"
# Boot volume size
ebs_app_boot_volume_size_in_gb = "<Boot volume size>"
# Block volume size
ebs_app_block_volume_size_in_gb = "<Block volume size>"
# Block volume performance
ebs_app_block_volume_vpus_per_gb = "<Block volume VPUs per GB>"
# Mount path for local application filesystem
ebs_app_block_volume_mount_path = "<Block volume mount path>"
# Listen port of the application instance
ebs_app_instance_listen_port = "<Application instance listen port>"
# Mount path for shared application filesystem
ebs_shared_filesystem_mount_path = "<Path of primary application filesystem>"
# Shared application filesystem size limit
ebs_shared_filesystem_limit_size_in_gb = "<Upper soft limit of FSS in gb>"
# Whether database is required to be created
ebs_database_required = "<true/false>"
# Database Edition
db_edition = "<Database Edition>"
# Licensing model for database
db_license_model = "<Database license model>"
# Database version
db_version = "<Database version>"
# Number of database nodes
db_node_count = "<Number of database Nodes (1 for Single instance and 2 for RAC)>"
# Shape of Database nodes
db_instance_shape = "<Database node shape>"
# Database name
db_name = "<Database Name>"
# Size of Database
db_size_in_gb = "<Data size in GB>"
# Database administration (sys) password
db_admin_password = "<Database sys password>"
# Characterset of database
db_characterset = "<Database characterset>"
# National Characterset of database
db_nls_characterset = "<Database National characterset>"
# Pluggable database name
db_pdb_name = "<Pluggable database name>"
# Whether private Load Balancer
load_balancer_private = "<true/false>"
# Hostname of Load Balancer
load_balancer_hostname = "<Load balancer hostname>"
# Shape of Load Balancer
load_balancer_shape = "<Load Balancer shape>"
# Listen port of load balancer
load_balancer_listen_port = "<Load balancer listen port>"