20 lines
438 B
HCL
20 lines
438 B
HCL
terraform {
|
|
backend "s3" {
|
|
bucket = "pm.jdb-labs.com"
|
|
region = "us-west-2"
|
|
key = "terraform.tfstate"
|
|
dynamodb_table = "terraform-state-lock.jdb-software.com"
|
|
}
|
|
}
|
|
|
|
data "terraform_remote_state" "jdbsoft" {
|
|
backend = "s3"
|
|
|
|
config = {
|
|
bucket = "operations.jdb-software.com"
|
|
region = "us-east-2"
|
|
key = "terraform/operations.tfstate"
|
|
dynamodb_table = "terraform-state-lock.jdb-software.com"
|
|
}
|
|
}
|