diff --git a/data.tf b/data.tf deleted file mode 100644 index e69de29..0000000 diff --git a/landing-zone.tf b/landing-zone.tf new file mode 100644 index 0000000..4861715 --- /dev/null +++ b/landing-zone.tf @@ -0,0 +1,7 @@ +module "landingzone" { + source = "MitocGroup/landing-zone/aws" + version = "0.2.4" + landing_zone_providers = var.landing_zone_providers + landing_zone_components = var.landing_zone_components + terraform_backend = var.terraform_backend +} diff --git a/provider.tf b/provider.tf index dc58d9a..9c01610 100644 --- a/provider.tf +++ b/provider.tf @@ -1,3 +1,4 @@ provider "aws" { - region = var.region + version = "~> 2.61" + region = var.region }