-
Notifications
You must be signed in to change notification settings - Fork 17
/
versions.tf
41 lines (39 loc) · 953 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
# Copyright © 2021-2024, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
terraform {
required_version = ">= 1.8.0"
required_providers {
google = {
source = "hashicorp/google"
version = "5.31.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = "5.31.0"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "~> 2.25" # Constrained by Google
}
local = {
source = "hashicorp/local"
version = "~> 2.4"
}
random = {
source = "hashicorp/random"
version = "~> 3.6" # Constrained by Google
}
null = {
source = "hashicorp/null"
version = "~> 3.2" # Constrained by Google
}
external = {
source = "hashicorp/external"
version = "~> 2.3" # Constrained by Google
}
time = {
source = "hashicorp/time"
version = "~> 0.10"
}
}
}