├── .gitignore ├── README.md ├── compute.tf ├── main.tf ├── network.tf ├── secret.auto.tfvars.example └── userdata.tpl.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stealthybox/tf-oci-arm/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stealthybox/tf-oci-arm/HEAD/README.md -------------------------------------------------------------------------------- /compute.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stealthybox/tf-oci-arm/HEAD/compute.tf -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stealthybox/tf-oci-arm/HEAD/main.tf -------------------------------------------------------------------------------- /network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stealthybox/tf-oci-arm/HEAD/network.tf -------------------------------------------------------------------------------- /secret.auto.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stealthybox/tf-oci-arm/HEAD/secret.auto.tfvars.example -------------------------------------------------------------------------------- /userdata.tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stealthybox/tf-oci-arm/HEAD/userdata.tpl.yaml --------------------------------------------------------------------------------