We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea5c731 commit 80bd12eCopy full SHA for 80bd12e
modules/network/main.tf
@@ -1,7 +1,3 @@
1
-provider "aws" {
2
- region = var.region
3
-}
4
-
5
resource "aws_vpc" "main" {
6
cidr_block = var.vpc_cidr_block
7
tags = {
modules/network/variables.tf
@@ -16,12 +16,6 @@ variable "private_subnet_cidrs" {
16
default = ["10.0.3.0/24", "10.0.4.0/24"]
17
}
18
19
-variable "region" {
20
- description = "Region for creating resources"
21
- type = string
22
- default = "us-east-1"
23
24
25
variable "availability_zones" {
26
description = "List of Availability zone where the subnet must reside."
27
type = list(string)
0 commit comments