23 lines
411 B
Terraform
23 lines
411 B
Terraform
|
terraform {
|
||
|
required_version = ">= 1.4.0"
|
||
|
|
||
|
backend "local" {
|
||
|
path = "terraform.tfstate"
|
||
|
}
|
||
|
|
||
|
required_providers {
|
||
|
oci = {
|
||
|
version = ">= 4.110.0 "
|
||
|
source = "oracle/oci"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
provider "oci" {
|
||
|
tenancy_ocid = var.tenancy_ocid
|
||
|
user_ocid = var.user_ocid
|
||
|
private_key_path = var.private_key_path
|
||
|
fingerprint = var.fingerprint
|
||
|
region = var.region
|
||
|
}
|