-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathterraform.tf
38 lines (38 loc) · 1.01 KB
/
terraform.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
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "4.60.0"
}
azurerm = {
source = "hashicorp/azurerm"
version = "3.49.0"
}
local = {
source = "hashicorp/local"
version = "2.4.0"
}
# backend "s3" {
# bucket = "terraform-state-store"
# key = "terraform.tfstate"
# region = "us-east-1"
# dynamodb_table = "terraform-state-lock"
# encrypt = true
# }
# backend "s3" {
# bucket = "terraform-state-store"
# key = "terraform.tfstate"
# region = "us-east-1"
# dynamodb_table = "terraform-state-lock"
# encrypt = true
# }
# backend "azurerm" {
# resource_group_name = "terraform-state-store"
# storage_account_name = "terraform.tfstate"
# container_name = "terraform-state-lock"
# key = "terraform.tfstate"
# encrypt = true
# }
}
}
#