Skip to content

Commit 80bd12e

Browse files
committed
fix: remove provider for network module
1 parent ea5c731 commit 80bd12e

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

modules/network/main.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
provider "aws" {
2-
region = var.region
3-
}
4-
51
resource "aws_vpc" "main" {
62
cidr_block = var.vpc_cidr_block
73
tags = {

modules/network/variables.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,6 @@ variable "private_subnet_cidrs" {
1616
default = ["10.0.3.0/24", "10.0.4.0/24"]
1717
}
1818

19-
variable "region" {
20-
description = "Region for creating resources"
21-
type = string
22-
default = "us-east-1"
23-
}
24-
2519
variable "availability_zones" {
2620
description = "List of Availability zone where the subnet must reside."
2721
type = list(string)

0 commit comments

Comments
 (0)