{"id":18802282,"url":"https://github.com/oracle-quickstart/oci-hyperion","last_synced_at":"2025-04-13T18:10:34.722Z","repository":{"id":106380254,"uuid":"215152516","full_name":"oracle-quickstart/oci-hyperion","owner":"oracle-quickstart","description":"Terraform module to deploy Hyperion on Oracle Cloud Infrastructure (OCI)","archived":false,"fork":false,"pushed_at":"2020-12-15T14:08:33.000Z","size":283,"stargazers_count":4,"open_issues_count":2,"forks_count":4,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-03-27T08:58:17.748Z","etag":null,"topics":["cloud","hyperion","oci","oracle","oracle-led","terraform"],"latest_commit_sha":null,"homepage":null,"language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"upl-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/oracle-quickstart.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-10-14T21:56:42.000Z","updated_at":"2022-11-03T07:08:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"1a3f7cf1-e808-452d-ac42-da60bdd7ab49","html_url":"https://github.com/oracle-quickstart/oci-hyperion","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oracle-quickstart%2Foci-hyperion","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oracle-quickstart%2Foci-hyperion/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oracle-quickstart%2Foci-hyperion/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oracle-quickstart%2Foci-hyperion/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oracle-quickstart","download_url":"https://codeload.github.com/oracle-quickstart/oci-hyperion/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248758418,"owners_count":21156957,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cloud","hyperion","oci","oracle","oracle-led","terraform"],"created_at":"2024-11-07T22:27:20.686Z","updated_at":"2025-04-13T18:10:34.716Z","avatar_url":"https://github.com/oracle-quickstart.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# **Terraform modules for Hyperion on Oracle Cloud Infrastructure**\n[![Deploy to Oracle Cloud][magic_button]][magic_hyperion_stack]\n\nThese Terraform modules can be used to provision infrastructure for Oracle Enterprise management (Hyperion) on Oracle Cloud Infrastructure. Hyperion can be deployed on Oracle Cloud Infrastructure in single availability domain or multi availability domain architecture.The modules can be used to create infrastructure for Hyperion in single Availability Domain as well as multiple Availability Domains.\n\n### **Architecture for Deploying Hyperion in a Single Availability domain**\n![HA Architecture: Single Availability Domain](./_docs/hyperion-single-ad.png)\n\n### **Architecture for Deploying Hyperion in multiple Availability domains**\n![HA Architecture: Multiple Availability Domains](./_docs/hyperion-multi-ad.png)\n\nFor information on Hyperion deployment architecture on Oracle Cloud Infrastructure, see\n\n- [HA Architecture: Single Availability Domain](https://docs.oracle.com/en/solutions/design-hyperion-oci/active-active-deployments1.html#GUID-AA3B80FF-9146-4B93-98AC-09494CF1FFA6)\n- [HA Architecture: Multiple Availability Domains](https://docs.oracle.com/en/solutions/design-hyperion-oci/active-passive-deployments1.html#GUID-53B52BAB-B47D-425F-A6E3-F3331FCE99799)\n\n## **How to use this module**\n\n**Note: The template use [Windows Server 2016 image](https://docs.cloud.oracle.com/en-us/iaas/images/image/943bdefa-8858-4b37-98e0-fd710c4aea1e/) for provisoning the servers.** \n\n### **Using OCI Resource Manager**\n1. Click [![Deploy to Oracle Cloud][magic_button]][magic_hyperion_stack]\n\n   If you aren't already signed in, when prompted, enter the tenancy and user credentials.\n\n2. Review and accept the terms and conditions.\n\n3. Select the region where you want to deploy the stack.\n\n4. Follow the on-screen prompts and instructions to create the stack.\n\n5. After creating the stack, click Terraform Actions, and select Plan.\n\n6. Wait for the job to be completed, and review the plan.\n   \n   To make any changes, return to the Stack Details page, click Edit Stack, and make the required changes. Then, run the Plan action again.\n\n7. If no further changes are necessary, return to the Stack Details page, click Terraform Actions, and select Apply.\n\n\n### **Using Terraform CLI**\nFirst off you'll need to do some pre deploy setup.  That's all detailed [here](https://github.com/oracle-quickstart/oci-prerequisites). A terraform version of 0.13.x is required.\n\n1. Clone the repo\n\n  ```\n  $ git clone https://github.com/oracle-quickstart/oci-hyperion.git\n  $ cd oci-hyperion\n  ```\n\n2. Update **env-vars** with the required information. The file contains definitions of environment variables for your Oracle Cloud Infrastructure tenancy.\n\n3. Rename **terraform.tfvars.template** to **terraform.tfvars**.Update **terraform.tfvars** with the inputs for the architecture that you want to build. A running sample terraform.tfvars file for multiple availability domain architecture is available below. The contents of sample file can be copied to create a running terraform.tfvars input file. Update db_admin_password with actual password in terraform.tfvars file.\n\n4. Initialize Terraform. This will also download the latest terraform oci provider.\n\n  ```\n  $ terraform init\n  ```\n5. Set environment variables by running source **env-vars** on your UNIX system. \n\n  ```\n  $ source env-vars\n  ```\n\n6. Run terraform plan.\n\n  ```\n  $ terraform plan\n  ```\n\n7. Run terraform apply to create the infrastructure:\n\n  ```\n  $ terraform apply\n  ```\n\nWhen you’re prompted to confirm the action, enter **yes**.\n\nWhen all components have been created, Terraform displays a completion message. For example: Apply complete! Resources: 81 added, 0 changed, 0 destroyed.\n\n8. If you want to delete the infrastructure, run:\n\n  ```\n  $ terraform destroy\n  ```\n\nWhen you’re prompted to confirm the action, enter **yes**.\n\n## **Inputs required in the terraform.tfvars file**\n\nThe following inputs are required for terraform modules:\n\n| Argument                   | Description                                                                                                                                                                                                                                                                                                                                                       |\n| -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| AD                         | Availability Domain for Hyperion Deployment. This variable drives the Hyperion architecture to be deployed. Setting AD = [\"1\"] deploys infrastructure in single availability domain (Availabilty domain 1 of the tenancy) and AD = [\"1\",\"2\"] deploys infrastructure in multiple ADs (Availability domains 1 and 2 of the tenancy). |\n| vcn_cidr                   | CIDR block of the VCN (Virtual Cloud Network) to be created.                                                                                                                                                                                                      |\n| vcn_dns_label              | DNS Label of the VCN (Virtual Cloud Network) to be created.                                                                                                                                                                                                                                                                                                                               |\n| freeform_tags                 | Freeform tag for resource. | \n| ebs_env_prefix                 | Environment prefix to define names of Oracle Cloud infrastructure. resources.                                                                                                                                                                                                                                                                                                                   |\n| epm_financial_management                 | Whether create infrastructure for EPM Financial Management. The value can be “true” or “false”.                                                                                                                                                                                                                                                                                                                   |\n| epm_hfm_instance_count                 | Number of Financial Management instances.                                                                                                                                                                                                                                                                                                                   |\n| epm_hfm_instance_shape                 | Shape of Financial Management instance.                                                                                                                                                                                                                                                                                                                 |\n| epm_hfm_instance_bv_size_in_gb                 | Block volume size of Financial Management instance.                                                                                                                                                                                                                                                                                                                 |\n| epm_hfm_instance_bv_vpus_per_gb                 | Block volume VPUs per GB.                                                                                                                                                                                                                                                                                                         |\n| epm_htp_required                 | Whether create infrastructure for Hyperion Tax Provision. The value can be “true” or “false”.                                                                                                                                                                                                                                                                                                                   |\n| epm_htp_instance_count                 | Number of Hyperion Tax Provision instances.                                                                                                                                                                                                                                                                                                                   |\n| epm_htp_instance_shape                 | Shape of Hyperion Tax Provision instance.                                                                                                                                                                                                                                                                                                                   |\n| epm_htp_instance_bv_size_in_gb                 | Block volume size of Hyperion Tax Provision instance.                                                                                                                                                                                                                                                                                                                   |\n| epm_htp_instance_bv_vpus_per_gb                 | Block volume VPUs per GB.                                                                                                                                                                                                                                                                                                                  |\n| epm_planning                 | Whether create infrastructure for Planning. The value can be “true” or “false”.                                                                                                                                                                                                                                                                                                                   |\n| epm_planning_instance_count                 | Number of Planning instances.                                                                                                                                                                                                                                                                                                                   |\n| epm_planning_instance_shape                 | Shape of Planning instance.                                                                                                                                                                                                                                                                                                                   |\n| epm_planning_instance_bv_size_in_gb                 | Block volume size of Planning instance.                                                                                                          |\n| epm_planning_instance_bv_vpus_per_gb                 | Block volume VPUs per GB.\n| epm_essbase_instance_count                 | Number of Essbase instances.                                                                                                                                                                                                                                                                                                                   |\n| epm_essbase_instance_shape                 | Shape of Essbase instance.                                                                                                                                                                                                                                                                                                                   |\n| epm_essbase_instance_bv_size_in_gb                 | Block volume size of Essbase instance.                                                                                                                                                                                                                                                                                                                   |\n| epm_essbase_instance_bv_vpus_per_gb                 | Block volume VPUs per GB.\n| epm_foundation_instance_count                 | Number of Foundation instances.                                                                                                                                                                                                                                                                                                                   |\n| epm_foundation_instance_shape                 | Shape of Foundation instance.                                                                                                                                                                                                                                                                                                                   |\n| epm_foundation_instance_bv_size_in_gb                 | Block volume size of Foundation instance.                                                                                                                        \n| epm_foundation_instance_bv_vpus_per_gb                 | Block volume VPUs per GB.\n| foundation_db_separate                 | Whether create separate database for Foundation Services. The value can be “true” or “false”. \n| foundation_db_edition                 | Edition of database.     \n| foundation_db_license_model           | Licensing model for database.                                                                                                                                                                                                                                                                                                                                     |\n| foundation_db_version                 | Version of database.                                                                                                                                                                                                                                                                                                                                              |\n| foundation_db_node_count              | Number of database nodes. For single instance database, this parameter should be 1 and for Real Application Cluster Database, this parameter should be set to 2.                                                                                                                                                                                                  |\n| foundation_db_instance_shape          | Shape of Database nodes. For RAC, the minimum required shape is VMStandard2.2.                                                                                                                                                                                                                                                                                    |  \n| foundation_db_name                    | Name of Database Container.                                                                                                                                                                                                                                                                                                                                                    |\n| foundation_db_size_in_gb              | Size of database in gb. For more information, see [Oracle Cloud Infrastructure Images](https://docs.cloud.oracle.com/iaas/images/)                                                                                                                                                                                                                                      |\n| foundation_db_admin_password          | Database administration password (sys password).                                                                                                                                                                                                                                                                                                                  |  \n| foundation_db_characterset            | Characterset of database.                                                                                                                                                                                                                                                                                                                                         |\n| foundation_db_nls_characterset        | National Characterset of database.                                                                                                                                                                                                                                                                                                                                     |                                                                                                                                                                                                                                                                                                                                     |\n| foundation_pdb_name                | Pluggable database name.     \n| add_additional_products                 | Whether create infrastructure for additional EPM products. The value can be “true” or “false”.                                                                                                                                                                                                                                                                                                                   |\n| epm_profitability_required                 | Whether create infrastructure for Profitability. The value can be “true” or “false”.                                                                                                                                                                                                                                                                                                                   \n| epm_profitability_instance_count                 | Number of Profitability instances.                                                                                                                                                                                                                                                                                                                   |\n| epm_profitability_instance_shape                 | Shape of Profitability instance.                                                                                                                                                                                                                                                                                                                   |\n| epm_profitability_instance_bv_size_in_gb                 | Block volume size of Profitability instance                                                                                                                                                                                                                                                                                                                   |\n| epm_profitability_instance_bv_vpus_per_gb                 | Block volume VPUs per GB.    \n| epm_strategic_finance_required                 | Whether create infrastructure for Strategic Finance. The value can be “true” or “false”.                                                                                                                                                                                                                                                                                                                   \n| epm_strategic_finance_instance_count                 | Number of Strategic Finance instances.                                                                                                                                                                                                                                                                                                                   |\n| epm_strategic_finance_instance_shape                 | Shape of Strategic Finance instance.                                                                                                                                                                                                                                                                                                                   |\n| epm_strategic_finance_instance_bv_size_in_gb                 | Block volume size of Strategic Finance instance.                                                                                                                                                                                                                                                                                                                   |\n| epm_strategic_finance_instance_bv_vpus_per_gb                 | Block volume VPUs per GB.    \n| epm_fdmee_required                 | Whether create infrastructure for FDMEE. The values can be “true” or “false”.                                                                                                                                                                                                                                                                                                                   \n| epm_fdmee_instance_count                 | Number of FDMEE instance.                                                                                                                                                                                                                                                                                                                   |\n| epm_fdmee_instance_shape                 | Shape of FDMEE instance.                                                                                                                                                                                                                                                                                                                   |\n| epm_fdmee_instance_bv_size_in_gb                 | Block volume size of FDMEE instance.                                                                                                                                                                                                                                                                                                                |\n| epm_fdmee_instance_bv_vpus_per_gb                 | Block volume VPUs per GB.    |\n| epm_web_instance_count                 | Number of Web instances.                                                                                                                                                                                                                                                                                                                  |\n| epm_web_instance_shape                 | Shape of Web instance.                                                                                                                                                                                                                                                                                                                   |\n| epm_web_instance_listen_port                 | Listen port of Web instance.                                                                                                                                                                                                                                                                                                                   |\n| epm_web_instance_bv_size_in_gb                  | Block volume size of Web instance.                                                                                                                                                                                                                                                                                                                   |\n| epm_web_instance_bv_vpus_per_gb                 | Block volume VPUs per GB.    \n| epm_database_required           | Whether create database for EPM.The values can be “true” or “false”.                                                                                                                                                                                                                                                                                                                                                                                                            |\n| db_edition                 | Edition of database.     \n| db_license_model           | Licensing model for database.                                                                                                                                                                                                                                                                                                                                     |\n| db_version                 | Version of database.                                                                                                                                                                                                                                                                                                                                              |\n| db_node_count              | Number of database nodes. For single instance database, this parameter should be 1 and for Real Application Cluster Database, this parameter should be set to 2.                                                                                                                                                                                                  |\n| db_instance_shape          | Shape of Database nodes. For RAC, the minimum required shape is VMStandard2.2.                                                                                                                                                                                                                                                                                    |  \n| db_name                    | Name of Database Container.                                                                                                                                                                                                                                                                                                                                                    |\n| db_size_in_gb              | Size of database in gb. For more information, see [Oracle Cloud Infrastructure Images](https://docs.cloud.oracle.com/iaas/images/)                                                                                                                                                                                                                                      |\n| db_admin_password          | Database administration password (sys password).                                                                                                                                                                                                                                                                                                                  |  \n| db_characterset            | Characterset of database.                                                                                                                                                                                                                                                                                                                                         |\n| db_nls_characterset        | National Characterset of database.                                                                                                                        \n| db_pdb_name                | Starter Pluggable database name.     \n| load_balancer_hostname     | Hostname of the load balancer.                                                                                                                                                                                                                                                                                                                                    |\n| load_balancer_shape        | Shape of the load balancer.                                                                                                                                                                                                                                                                                                                                       |\n| load_balancer_listen_port  | Listen port of the load balancer.                                                                                                                                                                                                                                                                                                                                 |\n\n##### **Sample terraform.tfvars file to create Hyperion infrastructure in single availability domain architecture**\n\n```hcl\n# AD (Availability Domain to use for creating EBS infrastructure) \n# For single AD regions (ap-seoul-1, ap-tokyo-1, ca-toronto-1), use AD = [\"1\"] \n# AD (Availability Domain to use for creating EPM infrastructure) \nAD = [\"1\"]\n\n# CIDR block of VCN to be created\nvcn_cidr = \"172.16.0.0/16\"\n\n# DNS label of VCN to be created\nvcn_dns_label = \"epmvcn\"\n\n#Environment prefix to define name of resources\nepm_env_prefix = \"epm\"\n\n# Freeform tags\nfreeform_tags = { environment = \"prod\", costcenter = \"10240\" }\n\n\n#----------- EPM Financial Management Configuration ------------------------\n# Whether create infrastructure for EPM Financial Management\nepm_financial_management = true\n\n# Number of Financial Management instances\nepm_hfm_instance_count = \"1\"\n\n# Shape of Financial Management instance\nepm_hfm_instance_shape =  \"VM.Standard2.1\"\n\n# Block volume size of Financial Management instance\nepm_hfm_instance_bv_size_in_gb =  \"100\"\n\n# Block volume VPUs per GB \nepm_hfm_instance_bv_vpus_per_gb = \"0\"\n\n# Whether create infrastructure for Hyperion Tax Planning with Financial Management\nepm_htp_required = true\n\n# Number of Hyperion Tax Provision instances\nepm_htp_instance_count = \"0\"\n\n# Shape of Hyperion Tax Provision instance\nepm_htp_instance_shape =  \"VM.Standard2.1\"\n\n# Block volume size of Hyperion Tax Provision instance\nepm_htp_instance_bv_size_in_gb =  \"100\"\n\n# Block volume VPUs per GB \nepm_htp_instance_bv_vpus_per_gb = \"0\"\n#---------------------------------------------------------------------------\n\n#----------- EPM Planning Configuration ------------------------------------\n# Whether create infrastructure for EPM Planning\nepm_planning = \"false\"\n\n# Number of EPM Planning instances\nepm_planning_instance_count = \"0\"\n\n# Shape of EPM Planning instance\nepm_planning_instance_shape =  \"VM.Standard2.1\"\n\n# Block volume size of EPM Planning instance\nepm_planning_instance_bv_size_in_gb =  \"100\"\n\n# Block volume VPUs per GB\nepm_planning_instance_bv_vpus_per_gb = \"0\"\n\n# Number of EPM Essbase instances\nepm_essbase_instance_count = \"0\"\n\n# Shape of EPM Essbase instance\nepm_essbase_instance_shape =  \"VM.Standard2.1\"\n\n# Block volume size of EPM Essbase instance\nepm_essbase_instance_bv_size_in_gb =  \"100\"\n\n# Block volume VPUs per GB\nepm_essbase_instance_bv_vpus_per_gb = \"0\"\n#---------------------------------------------------------------------------\n\n#----------- EPM Foundation Configuration ----------------------------------\n# Number of EPM Foundation instances\nepm_foundation_instance_count = \"1\"\n\n# Shape of EPM Foundation instance\nepm_foundation_instance_shape =  \"VM.Standard2.1\"\n\n# Block volume size of EPM Foundation instance\nepm_foundation_instance_bv_size_in_gb =  \"100\"\n\n# Block volume VPUs per GB\nepm_foundation_instance_bv_vpus_per_gb = \"0\"\n\n# Whether create separate database for Foundation services\nfoundation_db_separate = true\n\n# Foundation services database edition\nfoundation_db_edition = \"ENTERPRISE_EDITION_EXTREME_PERFORMANCE\"\n\n# Licensing model for Foundation services database\nfoundation_db_license_model = \"LICENSE_INCLUDED\"\n\n# Database version for Foundation services database\nfoundation_db_version =  \"12.1.0.2\"\n\n# Number of database nodes for Foundation services database\nfoundation_db_node_count =  \"2\"\n\n# Database Name for Foundation services database \nfoundation_db_name =  \"FNDCDB\"\n\n# PDB Name for Foundation services database \nfoundation_pdb_name =  \"FNDPRD\"\n\n# DB admin password for Foundation services database\nfoundation_db_admin_password =  \"\u003cpassword\u003e\"\n\n#Shape of Database nodes for Foundation services\nfoundation_db_instance_shape =  \"VM.Standard2.2\"\n\n#Size of Database\nfoundation_db_size_in_gb = \"256\"\n\n# Characterset of database\nfoundation_db_characterset = \"AL32UTF8\"\n\n# National Characterset of database\nfoundation_db_nls_characterset = \"AL16UTF16\"\n\n#---------------------------------------------------------------------------\n\n#----------- EPM Additional Products Configuration ------------------------\n# Whether create infrastructure for addtional products\nadd_additional_products = \"false\"\n\n# Whether create infrastructure for EPM Profitability\nepm_profitability_required = \"false\"\n\n# Number of Profitability instances\nepm_profitability_instance_count = \"0\"\n\n# Shape of Profitability instance\nepm_profitability_instance_shape =  \"VM.Standard2.1\"\n\n# Block volume size of Profitability instance\nepm_profitability_instance_bv_size_in_gb =  \"100\"\n\n# Block volume VPUs per GB\nepm_profitability_instance_bv_vpus_per_gb = \"0\"\n\n####### EPM Strategic Finance Instance  ################\n\n# Whether create infrastructure for Strategic Finance\nepm_strategic_finance_required = \"false\"\n\n# Number of Strategic Finance instances\nepm_strategic_finance_instance_count = \"0\"\n\n# Shape of Strategic Finance instance\nepm_strategic_finance_instance_shape =  \"VM.Standard2.1\"\n\n# Block volume size of Strategic Finance instance\nepm_strategic_finance_instance_bv_size_in_gb =  \"100\"\n\n# Block volume VPUs per GB\nepm_strategic_finance_instance_bv_vpus_per_gb = \"0\"\n\n####### EPM FDMEE Instance  ##############################\n# Whether create infrastructure for FDMEE \nepm_fdmee_required = \"false\"\n\n# Number of FDMEE instances\nepm_fdmee_instance_count = \"0\"\n\n# Shape of FDMEE instance\nepm_fdmee_instance_shape =  \"VM.Standard2.1\"\n\n# Block volume size of FDMEE instance\nepm_fdmee_instance_bv_size_in_gb =  \"100\"\n\n# Block volume VPUs per GB\nepm_fdmee_instance_bv_vpus_per_gb = \"0\"\n\n#---------------------------------------------------------------------------\n\n#----------- EPM Web Configuration ------------------------\n# Number of web instances\nepm_web_instance_count = \"0\"\n\n# Shape of web instance\nepm_web_instance_shape =  \"VM.Standard2.1\"\n\n# Listen port range of web instance\nepm_web_instance_listen_port_range = \"19000\"\n\n# Block volume size of web instance\nepm_web_instance_bv_size_in_gb =  \"100\"\n\n# Block volume VPUs per GB\nepm_web_instance_bv_vpus_per_gb = \"0\"\n\n#---------------------------------------------------------------------------\n\n#----------- EPM Database Configuration ------------------------\n####### EPM Hyperion Database ###########################\n\n#Whether EPM database is required to be provisioned\nepm_database_required = true\n\n# Database Edition\ndb_edition = \"ENTERPRISE_EDITION_EXTREME_PERFORMANCE\"\n\n# Licensing model for database\ndb_license_model = \"LICENSE_INCLUDED\"\n\n# Database version\ndb_version =  \"12.1.0.2\"\n\n# Number of database nodes\ndb_node_count =  \"2\"\n\n#Shape of Database nodes\ndb_instance_shape =  \"VM.Standard2.2\"\n\n#Database name\ndb_name =  \"EPMCDB\"\n\n#Size of Database\ndb_size_in_gb = \"256\"\n\n# Database administration (sys) password\ndb_admin_password = \"\u003cpassword\u003e\"\n\n# Characterset of database\ndb_characterset = \"AL32UTF8\"\n\n# National Characterset of database\ndb_nls_characterset = \"AL16UTF16\"\n\n# Pluggable database name\ndb_pdb_name = \"EPMPRD\"\n#---------------------------------------------------------------------------\n\n#----------- EPM Load Balancer Configuration ------------------------\n\n# Whether private load balancer is required\nload_balancer_private = \"False\"\n\n# Hostname of Load Balancer\nload_balancer_hostname =  \"epm.mycompany.com\"\n\n# Shape of Load Balancer\nload_balancer_shape = \"100Mbps\"\n\n#Listen port of load balancer\nload_balancer_listen_port =  \"443\"\n\n#---------------------------------------------------------------------------\n```\n\nIf you want to deploy Hyperion on Oracle Cloud Infrastructure in multi availability domain architecture, set AD variable to\n\n```hcl\nAD = [\"1\",\"2\"]\n```\n[magic_button]: https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg\n[magic_hyperion_stack]: https://cloud.oracle.com/resourcemanager/stacks/create?region=home\u0026zipUrl=https://github.com/oracle-quickstart/oci-hyperion/archive/master.zip\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foracle-quickstart%2Foci-hyperion","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foracle-quickstart%2Foci-hyperion","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foracle-quickstart%2Foci-hyperion/lists"}