Carga inicial
This commit is contained in:
17
providers.tf
Executable file
17
providers.tf
Executable file
@@ -0,0 +1,17 @@
|
||||
# Copyright (c) 2023, 2025, 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" {
|
||||
region = var.region
|
||||
tenancy_ocid = var.tenancy_ocid
|
||||
user_ocid = var.user_ocid
|
||||
fingerprint = var.fingerprint
|
||||
private_key_path = var.private_key_path
|
||||
}
|
||||
|
||||
terraform {
|
||||
required_providers {
|
||||
oci = {
|
||||
source = "oracle/oci"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user