File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 5
5
6
6
module "cluster" {
7
7
source = " cn-terraform/ecs-cluster/aws"
8
- name = " test-cluster "
8
+ name = " test"
9
9
}
10
10
11
11
module "base-network" {
@@ -52,14 +52,14 @@ module "base-network" {
52
52
53
53
module "td" {
54
54
source = " cn-terraform/ecs-fargate-task-definition/aws"
55
- name_prefix = " test-td "
55
+ name_prefix = " test"
56
56
container_image = " ubuntu"
57
57
container_name = " test"
58
58
}
59
59
60
60
module "service" {
61
61
source = " cn-terraform/ecs-fargate-service/aws"
62
- name_prefix = " test-service "
62
+ name_prefix = " test"
63
63
vpc_id = module. base-network . vpc_id
64
64
ecs_cluster_arn = module. cluster . aws_ecs_cluster_cluster_arn
65
65
task_definition_arn = module. td . aws_ecs_task_definition_td_arn
@@ -71,7 +71,7 @@ module "service" {
71
71
72
72
module "ecs-service-autoscaling" {
73
73
source = " ../../"
74
- name_prefix = " test-as "
74
+ name_prefix = " test"
75
75
ecs_cluster_name = module. cluster . aws_ecs_cluster_cluster_name
76
76
ecs_service_name = module. service . aws_ecs_service_service_name
77
77
# region = "us-east-1"
You can’t perform that action at this time.
0 commit comments