Skip to content

Commit a876ebb

Browse files
committed
Fixing issues
1 parent c73d1ea commit a876ebb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/test/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ provider "aws" {
55
module "base-network" {
66
source = "cn-terraform/networking/aws"
77
version = "2.0.8"
8-
name_prefix = "base"
8+
name_prefix = "base"
99
vpc_cidr_block = "192.168.0.0/16"
1010
availability_zones = ["us-east-1a", "us-east-1b", "us-east-1c", "us-east-1d"]
1111
public_subnets_cidrs_per_availability_zone = ["192.168.0.0/19", "192.168.32.0/19", "192.168.64.0/19", "192.168.96.0/19"]
@@ -14,7 +14,7 @@ module "base-network" {
1414

1515
module "load_balancer" {
1616
source = "../../"
17-
name_prefix = "test-alb"
17+
name_prefix = "test-alb"
1818
vpc_id = module.base-network.vpc_id
1919
private_subnets = module.base-network.private_subnets_ids
2020
public_subnets = module.base-network.public_subnets_ids

0 commit comments

Comments
 (0)