Skip to content

Commit 0a88e9c

Browse files
committed
refactor: remove provider from network module
1 parent 442484c commit 0a88e9c

File tree

3 files changed

+0
-12
lines changed

3 files changed

+0
-12
lines changed

examples/atlantis_with_vpc/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
module "network" {
22
source = "../../modules/network"
3-
region = var.region
43
availability_zones = var.availability_zones
54
}
65

examples/atlantis_with_vpc/variables.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,6 @@ variable "launch_template_key_name" {
5454
type = string
5555
}
5656

57-
variable "region" {
58-
description = "Region for creating resources"
59-
type = string
60-
}
61-
6257
variable "availability_zones" {
6358
description = "List of Availability zone where the subnet must reside."
6459
type = list(string)

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)