10 lines
274 B
HCL
10 lines
274 B
HCL
provider "oci" {
|
|
tenancy_ocid = var.tenancy_ocid
|
|
user_ocid = var.user_ocid
|
|
fingerprint = var.fingerprint
|
|
private_key_path = var.private_key_path
|
|
private_key_password = var.private_key_password
|
|
region = var.region
|
|
}
|
|
|