Skip to content

Commit f0dfd1b

Browse files
committed
Fixing issues
1 parent 6f9bdf8 commit f0dfd1b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/test/main.tf

Lines changed: 3 additions & 3 deletions
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.10"
8-
name_prefix = "test-networking"
8+
name_prefix = "test-networking"
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"]
@@ -21,14 +21,14 @@ module "cluster" {
2121
module "td" {
2222
source = "cn-terraform/ecs-fargate-task-definition/aws"
2323
version = "1.0.15"
24-
name_prefix = "test-td"
24+
name_prefix = "test-td"
2525
container_image = "ubuntu"
2626
container_name = "test"
2727
}
2828

2929
module "task" {
3030
source = "../../"
31-
name_prefix = "test-task"
31+
name_prefix = "test-task"
3232
event_rule_name = "test-rule"
3333
ecs_cluster_arn = module.cluster.aws_ecs_cluster_cluster_arn
3434
event_target_ecs_target_subnets = module.base-network.public_subnets_ids

0 commit comments

Comments
 (0)