-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversions.tf
58 lines (52 loc) · 960 Bytes
/
versions.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
50
51
52
53
54
55
56
57
58
terraform {
cloud {
organization = "tibeer"
workspaces {
name = "clouds"
}
hostname = "app.terraform.io"
}
required_providers {
aws = {
source = "hashicorp/aws"
}
config = {
source = "alabuel/config"
}
equinix = {
source = "equinix/equinix"
}
google = {
source = "hashicorp/google"
}
hcloud = {
source = "hetznercloud/hcloud"
}
oci = {
source = "oracle/oci"
}
openstack = {
source = "terraform-provider-openstack/openstack"
}
random = {
source = "hashicorp/random"
}
}
}
provider "aws" {}
provider "config" {}
provider "equinix" {}
provider "hcloud" {}
provider "oci" {
alias = "prod"
config_file_profile = "PROD"
}
provider "oci" {
alias = "beta"
config_file_profile = "BETA"
}
provider "google" {
project = "tibeer"
region = "us-central1"
zone = "us-central1-b"
}