forked from sassoftware/viya4-iac-azure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
versions.tf
42 lines (39 loc) · 848 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
# Copyright © 2020-2024, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
terraform {
required_version = ">= 1.9.6"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "4.3.0"
}
azuread = {
source = "hashicorp/azuread"
version = "~>2.53"
}
external = {
source = "hashicorp/external"
version = "~>2.3"
}
local = {
source = "hashicorp/local"
version = "~>2.5"
}
null = {
source = "hashicorp/null"
version = "~>3.2"
}
tls = {
source = "hashicorp/tls"
version = "~>4.0"
}
cloudinit = {
source = "hashicorp/cloudinit"
version = "~>2.3"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "~>2.32"
}
}
}