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" }