From 76348c8b66f0b268e6c97d5357f9b68a0358cbfc Mon Sep 17 00:00:00 2001 From: team-tf-cdk Date: Mon, 30 Oct 2023 00:25:23 +0000 Subject: [PATCH] chore: self mutation Signed-off-by: team-tf-cdk --- examples/hybrid-module/terraform/provider.tf | 30 ++++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/examples/hybrid-module/terraform/provider.tf b/examples/hybrid-module/terraform/provider.tf index 87c28b0..c6fba20 100644 --- a/examples/hybrid-module/terraform/provider.tf +++ b/examples/hybrid-module/terraform/provider.tf @@ -1,19 +1,19 @@ # This file is managed by projen. Do not edit, change the .projenrc file instead. - terraform { - # Limit provider version (some modules are not compatible with aws 4.x) - required_providers { - aws = { - source = "hashicorp/aws" - version = "~> 3.74" - } - } - # Terraform binary version constraint - required_version = ">= 1.2.0" - } - - - provider "aws" { - region = "eu-central-1" +terraform { + # Limit provider version (some modules are not compatible with aws 4.x) + required_providers { + aws = { + source = "hashicorp/aws" + version = "~> 3.74" } + } + # Terraform binary version constraint + required_version = ">= 1.2.0" +} + + +provider "aws" { + region = "eu-central-1" +} \ No newline at end of file