10 lines
381 B
Terraform
10 lines
381 B
Terraform
|
|
// Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
|
||
|
|
// Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
|
||
|
|
|
||
|
|
provider oci {
|
||
|
|
tenancy_ocid = var.tenancy_ocid
|
||
|
|
user_ocid = var.user_ocid
|
||
|
|
fingerprint = var.fingerprint
|
||
|
|
private_key_path = var.private_key_path
|
||
|
|
region = var.region
|
||
|
|
}
|