forked from astronomer/terraform-google-astronomer-gcp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
versions.tf
40 lines (39 loc) · 745 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
terraform {
required_version = ">= 0.13"
required_providers {
acme = {
source = "vancluever/acme"
version = "~> 2.0"
}
google = {
source = "hashicorp/google"
}
google-beta = {
source = "hashicorp/google-beta"
}
http = {
source = "hashicorp/http"
version = "~> 1.1"
}
local = {
source = "hashicorp/local"
version = "~> 1.3"
}
null = {
source = "hashicorp/null"
version = "~> 2.1"
}
random = {
source = "hashicorp/random"
version = "~> 2.2"
}
spotinst = {
source = "spotinst/spotinst"
version = "~> 1.17"
}
tls = {
source = "hashicorp/tls"
version = "~> 2.1"
}
}
}