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
- Host: GitHub
- URL: https://github.com/oracle-quickstart/oci-arch-atg
- Owner: oracle-quickstart
- License: upl-1.0
- Archived: true
- Created: 2020-08-31T16:19:36.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-21T13:26:25.000Z (almost 5 years ago)
- Last Synced: 2025-02-19T21:12:51.284Z (4 months ago)
- Topics: oracle-led
- Language: HCL
- Homepage:
- Size: 84 KB
- Stars: 4
- Watchers: 8
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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

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