Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oracle-quickstart/oci-neo4j
Terraform module to deploy Neo4j on Oracle Cloud Infrastructure (OCI)
https://github.com/oracle-quickstart/oci-neo4j
cloud neo4j oci oracle partner-led terraform
Last synced: 25 days ago
JSON representation
Terraform module to deploy Neo4j on Oracle Cloud Infrastructure (OCI)
- Host: GitHub
- URL: https://github.com/oracle-quickstart/oci-neo4j
- Owner: oracle-quickstart
- License: apache-2.0
- Created: 2019-01-25T18:16:24.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-20T20:21:03.000Z (about 5 years ago)
- Last Synced: 2024-11-07T22:38:36.827Z (3 months ago)
- Topics: cloud, neo4j, oci, oracle, partner-led, terraform
- Language: HCL
- Homepage:
- Size: 35.2 KB
- Stars: 2
- Watchers: 11
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# oci-neo4j
This is a Terraform module that deploys [Neo4j](https://neo4j.com/product/) on [Oracle Cloud Infrastructure (OCI)](https://cloud.oracle.com/en_US/cloud-infrastructure). It is developed jointly by Oracle and Neo4j.## Prerequisites
First off you'll need to do some pre deploy setup. That's all detailed [here](https://github.com/oracle/oci-quickstart-prerequisites).## Clone the Module
Now, you'll want a local copy of this repo by running:git clone https://github.com/oracle-quickstart/oci-neo4j.git
## Deploy
The TF templates here can be deployed by running the following commands:
```
cd oci-neo4j/simple
terraform init
terraform plan
terraform apply
```The output of `terraform apply` should look like:
```
Apply complete! Resources: 14 added, 0 changed, 0 destroyed.Outputs:
Core server private IPs = 10.0.0.3,10.0.0.2,10.0.0.4
Core server public IPs = 150.136.212.76,129.213.91.51,132.145.183.234
```You can access the Neo4j browser at `http://:7474` with the default login `neo4j/neo4j`. You will be prompted to change the password at first login.