20 lines
655 B
HCL
20 lines
655 B
HCL
// Copyright (c) 2020, Oracle and/or its affiliates.
|
|
// 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
|
|
}
|
|
|
|
// provider for home region for IAM resource provisioning
|
|
provider oci {
|
|
alias = "home"
|
|
tenancy_ocid = var.tenancy_ocid
|
|
user_ocid = var.user_ocid
|
|
fingerprint = var.fingerprint
|
|
private_key_path = var.private_key_path
|
|
region = local.home_region
|
|
} |