├── .gitignore ├── .terraform.lock.hcl ├── LICENSE ├── README.md ├── main.tf ├── main_override.tf.example ├── out-of-capacity.sh ├── terraform.tfvars.example └── variables.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherglitchinthematrix/oci-free-tier-terraform-module/HEAD/.gitignore -------------------------------------------------------------------------------- /.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherglitchinthematrix/oci-free-tier-terraform-module/HEAD/.terraform.lock.hcl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherglitchinthematrix/oci-free-tier-terraform-module/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherglitchinthematrix/oci-free-tier-terraform-module/HEAD/README.md -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherglitchinthematrix/oci-free-tier-terraform-module/HEAD/main.tf -------------------------------------------------------------------------------- /main_override.tf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherglitchinthematrix/oci-free-tier-terraform-module/HEAD/main_override.tf.example -------------------------------------------------------------------------------- /out-of-capacity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherglitchinthematrix/oci-free-tier-terraform-module/HEAD/out-of-capacity.sh -------------------------------------------------------------------------------- /terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherglitchinthematrix/oci-free-tier-terraform-module/HEAD/terraform.tfvars.example -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherglitchinthematrix/oci-free-tier-terraform-module/HEAD/variables.tf --------------------------------------------------------------------------------