-
Notifications
You must be signed in to change notification settings - Fork 1
/
backend.tf
26 lines (23 loc) · 888 Bytes
/
backend.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
################################################################################
#### Terraform backend is set to S3 bucket, below is the configuration ####
################################################################################
terraform {
backend "s3" {
encrypt = true
skip_credentials_validation = true
skip_region_validation = true
skip_metadata_api_check = true
bucket = "rosa-terraform-state-files"
key = "state/terraform.tfstate"
region = "us-east-2"
dynamodb_table = "rosa-terraform-statefile-locks"
}
}
################################################################################
#### below is the sample configuration to set terraform backend as local ####
################################################################################
/*
terraform {
backend "local" { }
}
*/