You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
377 B
HCL
17 lines
377 B
HCL
provider "aws" {
|
|
region = "us-west-1"
|
|
}
|
|
|
|
terraform {
|
|
backend "s3" {
|
|
bucket = "nr-tfstate"
|
|
key = "global/state/terraform.tfstate"
|
|
region = "us-west-1"
|
|
dynamodb_table = "nr_tfstate_lock"
|
|
encrypt = true
|
|
}
|
|
}
|
|
|
|
module "terraform_tfstate" {
|
|
source = "http://192.168.1.27:3003/ronnic/tf-modules.git?ref=main//state"
|
|
} |