Skip to content

Commit 1464a7e

Browse files
committed
Update modules
1 parent 9806089 commit 1464a7e

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Pleas run this command right after cloning the repository.
4040
pre-commit install
4141

4242
For that you may need to install the folowwing tools:
43-
* [Pre-commit](https://pre-commit.com/)
43+
* [Pre-commit](https://pre-commit.com/)
4444
* [Terraform Docs](https://terraform-docs.io/)
4545

4646
In order to run all checks at any point run the following command:
@@ -64,8 +64,8 @@ In order to run all checks at any point run the following command:
6464

6565
| Name | Source | Version |
6666
|------|--------|---------|
67-
| <a name="module_ecs-alb"></a> [ecs-alb](#module\_ecs-alb) | cn-terraform/ecs-alb/aws | 1.0.9 |
68-
| <a name="module_ecs-autoscaling"></a> [ecs-autoscaling](#module\_ecs-autoscaling) | cn-terraform/ecs-service-autoscaling/aws | 1.0.3 |
67+
| <a name="module_ecs-alb"></a> [ecs-alb](#module\_ecs-alb) | cn-terraform/ecs-alb/aws | 1.0.12 |
68+
| <a name="module_ecs-autoscaling"></a> [ecs-autoscaling](#module\_ecs-autoscaling) | cn-terraform/ecs-service-autoscaling/aws | 1.0.4 |
6969

7070
## Resources
7171

examples/test/.terraform.lock.hcl

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/test/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module "cluster" {
66

77
module "base-network" {
88
source = "cn-terraform/networking/aws"
9-
version = "2.0.12"
9+
version = "2.0.13"
1010
name_prefix = "test-networking"
1111
vpc_cidr_block = "192.168.0.0/16"
1212
availability_zones = ["us-east-1a", "us-east-1b", "us-east-1c", "us-east-1d"]
@@ -16,7 +16,7 @@ module "base-network" {
1616

1717
module "td" {
1818
source = "cn-terraform/ecs-fargate-task-definition/aws"
19-
version = "1.0.23"
19+
version = "1.0.24"
2020
name_prefix = "test-td"
2121
container_image = "ubuntu"
2222
container_name = "test"

main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#------------------------------------------------------------------------------
44
module "ecs-alb" {
55
source = "cn-terraform/ecs-alb/aws"
6-
version = "1.0.11"
6+
version = "1.0.12"
77

88
name_prefix = var.name_prefix
99
vpc_id = var.vpc_id
@@ -172,7 +172,7 @@ module "ecs-autoscaling" {
172172
count = var.enable_autoscaling ? 1 : 0
173173

174174
source = "cn-terraform/ecs-service-autoscaling/aws"
175-
version = "1.0.3"
175+
version = "1.0.4"
176176

177177
name_prefix = var.name_prefix
178178
ecs_cluster_name = var.ecs_cluster_name

0 commit comments

Comments
 (0)