Skip to content

Commit

Permalink
wire in w/ local instead of var
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Oct 9, 2024
1 parent 5ba39d6 commit 1db3ee8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/clouds/aws/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "~> 5.4"

name = var.vpc_name
name = local.vpc_name
cidr = var.vpc_cidr
azs = data.aws_availability_zones.available.names
public_subnets = var.public_subnets
Expand Down

0 comments on commit 1db3ee8

Please sign in to comment.