8 lines
240 B
HCL
Executable File
8 lines
240 B
HCL
Executable File
# Backend configuration for Terraform so we can centralize the state into an S3 bucket
|
|
# Do note that most of the settings to configure the backend need to be set in the repository variables in Bitbucket
|
|
|
|
terraform {
|
|
backend "s3" {
|
|
}
|
|
}
|