Skip to content

Commit

Permalink
Fix vpc module
Browse files Browse the repository at this point in the history
  • Loading branch information
posquit0 committed Oct 17, 2023
1 parent 2ae3c5f commit 694d35d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/vpc/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ output "egress_only_internet_gateway_enabled" {

output "egress_only_internet_gateway_id" {
description = "The ID of the Egress Only Internet Gateway."
value = one(aws_egress_only_internet_gateway.this[0].id)
value = one(aws_egress_only_internet_gateway.this[*].id)
}

output "vpn_gateway_enabled" {
Expand Down
2 changes: 1 addition & 1 deletion modules/vpc/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ variable "name" {
variable "cidr_block" {
description = "The CIDR block for the VPC. Default value is a valid CIDR, but not acceptable by AWS and should be overridden."
type = string
default = "0.0.0.0/0"
default = "10.0.0.0/16"
}

variable "secondary_cidr_blocks" {
Expand Down

0 comments on commit 694d35d

Please sign in to comment.