14 lines
453 B
HCL
Executable File

# Backend configuration for Terraform so we can centralize the state into an S3 bucket
terraform {
backend "s3" {
access_key = "AKIAWTYYXQLEHXEQGQDQ"
secret_key = "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"
bucket = "datadog-tf-state"
region = "eu-west-1"
encrypt = true
dynamodb_table = "datadog-tf-state-lock-table"
key = "sl_techops/apps/datadog/management/users.tfstate"
}
}