-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathmain.tf
More file actions
23 lines (21 loc) · 684 Bytes
/
main.tf
File metadata and controls
23 lines (21 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Require TF version to be same as or greater than 0.12.13
terraform {
required_version = ">=1.3.7"
#backend "s3" {
# bucket = "your_globally_unique_bucket_name"
# key = "terraform.tfstate"
# region = "us-east-1"
# dynamodb_table = "aws-locks"
# encrypt = true
#}
}
# Download any stable version in AWS provider of 2.36.0 or higher in 2.36 train
provider "aws" {
region = "us-east-1"
}
# Call the seed_module to build our ADO seed info
module "bootstrap" {
source = "./modules/bootstrap"
name_of_s3_bucket = "your_globally_unique_bucket_name"
dynamo_db_table_name = "aws-locks"
}