Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/veerendra2/oracle-cloud-terraform
IaC setup with terraform for Oracle Cloud (Always Free Tire)
https://github.com/veerendra2/oracle-cloud-terraform
infrastructure-as-code oci oracle oracle-cloud terraform
Last synced: 12 days ago
JSON representation
IaC setup with terraform for Oracle Cloud (Always Free Tire)
- Host: GitHub
- URL: https://github.com/veerendra2/oracle-cloud-terraform
- Owner: veerendra2
- Created: 2022-10-26T15:14:22.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-02T20:01:19.000Z (about 1 year ago)
- Last Synced: 2024-11-21T11:32:48.098Z (2 months ago)
- Topics: infrastructure-as-code, oci, oracle, oracle-cloud, terraform
- Language: HCL
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Oracle Cloud Terraform
Infrastructure as code setup to manage resources on Oracle Cloud> https://www.oracle.com/cloud/free/
## Modules
* Compute
* Network
* Network Security Groups(nsg)
* Virtual Cloud Network(vcn)## Run
```bash
$ git clone [email protected]:veerendra2/oracle-cloud-terraform.git
$ cd oracle-cloud-terraform/environments/frankfurt/# terraform http backend username and password
$ export TF_HTTP_USERNAME=[REDACTED]
$ export TF_HTTP_PASSWORD=[REDACTED]# oci authentication key file location
$ export TF_VAR_private_key_path=./auth-key.pem$ terraform plan -out=plan
$ terraform apply "plan"
```
## Refereces#### OCI
* [Oracle Cloud Infrastructure Free Tier](https://docs.oracle.com/en-us/iaas/Content/FreeTier/freetier.htm)
* [API Key Authentication](https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraformproviderconfiguration.htm#APIKeyAuth)
* [Terraform: Set Up OCI Terraform](https://docs.oracle.com/en-us/iaas/developer-tutorials/tutorials/tf-provider/01-summary.htm)
* [Regions and Availability Domains](https://docs.oracle.com/en-us/iaas/Content/General/Concepts/regions.htm)
* [Network Security Groups](https://docs.oracle.com/en-us/iaas/Content/Network/Concepts/networksecuritygroups.htm)#### Terraform
* [OCI Compute Example](https://github.com/oracle-terraform-modules/terraform-oci-compute-instance.git)
* [Always Free Example](https://github.com/oracle/terraform-provider-oci/tree/master/examples/always_free)