An open API service indexing awesome lists of open source software.

https://github.com/oracle-quickstart/oci-arch-atg

Oracle ATG e-commerce
https://github.com/oracle-quickstart/oci-arch-atg

oracle-led

Last synced: 2 months ago
JSON representation

Oracle ATG e-commerce

Awesome Lists containing this project

README

        

# oci-arch-atg

This architecture is used to provision the infrastructure components for a typical Oracle Commerce installation in Oracle Cloud Infrastructure.

The load balancers have only been configured for http. If https is needed, it can be configured post deployment.
A Dynamic Routing Gateway will need to be provisioned and attached to the Virtual Cloud Network (VCN) deployed in this code, if you plan to connect on-premises network to this infrastructure.

## Terraform Provider for Oracle Cloud Infrastructure
The OCI Terraform Provider is now available for automatic download through the Terraform Provider Registry.
For more information on how to get started view the [documentation](https://www.terraform.io/docs/providers/oci/index.html)
and [setup guide](https://www.terraform.io/docs/providers/oci/guides/version-3-upgrade.html).

* [Documentation](https://www.terraform.io/docs/providers/oci/index.html)
* [OCI forums](https://cloudcustomerconnect.oracle.com/resources/9c8fa8f96f/summary)
* [Github issues](https://github.com/terraform-providers/terraform-provider-oci/issues)
* [Troubleshooting](https://www.terraform.io/docs/providers/oci/guides/guides/troubleshooting.html)

## Clone the Module
Now, you'll want a local copy of this repo. You can make that with the commands:

git clone https://github.com/oracle-quickstart/oci-arch-atg
ls

## Prerequisites
First off, you'll need to do some pre-deploy setup. That's all detailed [here](https://github.com/cloud-partners/oci-prerequisites).

Secondly, create a `terraform.tfvars` file and populate with the following information:

```
# Authentication
tenancy_ocid = ""
user_ocid = ""
fingerprint = ""
private_key_path = ""

# SSH Keys
ssh_public_key = ""
bastion_ssh_public_key = ""

# Region
region = ""

# Compartment
compartment_ocid = ""

# Object Storage
bucket_namespace = ""

# Password for Autonomous Database
autonomous_database_admin_password=""

````

Deploy:

terraform init
terraform plan
terraform apply

## Destroy the Deployment
When you no longer need the deployment, you can run this command to destroy it:

terraform destroy

## Architecture Diagram

![](./images/atg-logical-resource-grouping.png)

## Reference Archirecture

- [Deploy Oracle Commerce Platform (ATG) on Oracle Cloud Infrastructure](https://docs.oracle.com/en/solutions/oci-atg/index.html)