-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovider.tf
49 lines (46 loc) · 970 Bytes
/
provider.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.84.0"
}
oci = {
source = "oracle/oci"
version = "6.23.0"
}
google = {
source = "hashicorp/google"
version = "6.18.0"
}
null = {
source = "hashicorp/null"
version = "3.2.3"
}
local = {
source = "hashicorp/local"
version = "2.5.2"
}
tls = {
source = "hashicorp/tls"
version = "4.0.6"
}
}
required_version = "1.4.5"
}
provider "aws" {
profile = "free"
region = var.aws_region
}
provider "google" {
project = var.gcp_project
region = var.gcp_region
}
provider "oci" {
tenancy_ocid = var.oci_tenancy_ocid
user_ocid = var.oci_user_ocid
fingerprint = var.oci_fingerprint
private_key_path = var.oci_private_key_path
region = var.oci_region
#auth = "SecurityToken"
#config_file_profile = "DEFAULT"
}