-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproviders.tf
More file actions
36 lines (35 loc) · 779 Bytes
/
providers.tf
File metadata and controls
36 lines (35 loc) · 779 Bytes
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
# Copyright (c) Çetin ARDAL
# SPDX-License-Identifier: MIT
terraform {
# Uncomment and adjust providers version according to your needs
required_providers {
# hcp = {
# source = "hashicorp/hcp"
# version = "0.67.0"
# }
# aws = {
# source = "hashicorp/aws"
# version = "5.10.0"
# }
# azurerm = {
# source = "hashicorp/azurerm"
# version = "3.43.0"
# }
# google = {
# source = "hashicorp/google"
# version = "4.75.1"
# }
# oci = {
# source = "oracle/oci"
# version = "5.6.0"
# }
# alicloud = {
# source = "aliyun/alicloud"
# version = "1.208.0"
# }
# kubernetes = {
# source = "hashicorp/kubernetes"
# version = "2.22.0"
# }
}
}