mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Add a sample Terraform configuration for working with Oracle Cloud Infrastructure (OCI) using the OCI Terraform provider Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
8 lines
280 B
HCL
8 lines
280 B
HCL
provider "oci" {
|
|
version = ">= 3.0.0"
|
|
region = "${var.oci_region}"
|
|
tenancy_ocid = "${var.oci_tenancy_ocid}"
|
|
user_ocid = "${var.oci_user_ocid}"
|
|
fingerprint = "${var.oci_fingerprint}"
|
|
private_key_path = "${var.oci_private_key_path}"
|
|
}
|