github.com/verrazzano/verrazzano@v1.7.1/tests/e2e/config/scripts/terraform/cluster/provider.tf (about)

     1  # Copyright (c) 2020, 2022, Oracle and/or its affiliates.
     2  # Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
     3  
     4  variable "region" {}
     5  variable "tenancy_id" {}
     6  variable "user_id" {}
     7  variable "api_fingerprint" {}
     8  variable "api_private_key_path" {}
     9  
    10  provider "oci" {
    11    version              = "4.75.0"
    12    tenancy_ocid         = var.tenancy_id
    13    user_ocid            = var.user_id
    14    fingerprint          = var.api_fingerprint
    15    private_key_path     = var.api_private_key_path
    16    region               = var.region
    17  }
    18  
    19  terraform {
    20    required_version = ">= 0.12"
    21  }